Beispiel #1
0
        public void updateVar(string var, int val)
        {
            this.setVar(var, val);
            UpdateMsg updateMsg = new UpdateMsg(var, val);
            Msg       msg       = new Msg(updateMsg);

            this.sendToSubscribers(var, msg);
        }
Beispiel #2
0
 public Msg(UpdateMsg updateMsg)
 {
     this.updateMsg = updateMsg;
 }