Server/ClientData.cs
author StephaneLenclud
Sun, 22 Nov 2015 23:46:52 +0100
changeset 172 5be2191d4be3
parent 141 6f1da2b5c2ec
child 175 391bce3c8368
permissions -rw-r--r--
Upgrading to SharpLibDisplay v0.1.2
StephaneLenclud@140
     1
using System;
StephaneLenclud@140
     2
using System.Collections.Generic;
StephaneLenclud@140
     3
using System.Linq;
StephaneLenclud@140
     4
using System.Text;
StephaneLenclud@140
     5
using System.Threading.Tasks;
StephaneLenclud@140
     6
//
StephaneLenclud@171
     7
using SharpLib.Display;
StephaneLenclud@140
     8
StephaneLenclud@140
     9
namespace SharpDisplayManager
StephaneLenclud@140
    10
{
StephaneLenclud@140
    11
    /// <summary>
StephaneLenclud@140
    12
    /// A UI thread copy of a client relevant data.
StephaneLenclud@140
    13
    /// Keeping this copy in the UI thread helps us deal with threading issues.
StephaneLenclud@140
    14
    /// </summary>
StephaneLenclud@140
    15
    public class ClientData
StephaneLenclud@140
    16
    {
StephaneLenclud@140
    17
        public ClientData(string aSessionId, ICallback aCallback)
StephaneLenclud@140
    18
        {
StephaneLenclud@140
    19
            SessionId = aSessionId;
StephaneLenclud@140
    20
            Name = "";
StephaneLenclud@140
    21
            Fields = new List<DataField>();
StephaneLenclud@140
    22
            Layout = new TableLayout(1, 2); //Default to one column and two rows
StephaneLenclud@140
    23
            Callback = aCallback;
StephaneLenclud@140
    24
        }
StephaneLenclud@140
    25
StephaneLenclud@140
    26
        public string SessionId { get; set; }
StephaneLenclud@140
    27
        public string Name { get; set; }
StephaneLenclud@140
    28
        public List<DataField> Fields { get; set; }
StephaneLenclud@140
    29
        public TableLayout Layout { get; set; }
StephaneLenclud@140
    30
        public ICallback Callback { get; set; }
StephaneLenclud@141
    31
StephaneLenclud@141
    32
        //Client management
StephaneLenclud@141
    33
        public DateTime LastSwitchTime { get; set; }
StephaneLenclud@140
    34
    }
StephaneLenclud@140
    35
}