Exemple #1
0
 void EWrapper.updateNewsBulletin(int msgId, int msgType, String message, String origExchange)
 {
     UpdateNewsBulletin?.Invoke(msgId, msgType, message, origExchange);
 }
 public virtual void updateNewsBulletin(int msgId, int msgType, string message, string origExchange)
 {
     UpdateNewsBulletin?.Invoke(this, new UpdateNewsBulletinArgs(msgId, msgType, message, origExchange));
 }
Exemple #3
0
        void EWrapper.updateNewsBulletin(int msgId, int msgType, string message, string origExchange)
        {
            ShowDebugMessage(msgId, msgType, message, origExchange);

            UpdateNewsBulletin?.Invoke(msgId, msgType, message, origExchange);
        }
Exemple #4
0
 public void updateNewsBulletin(int msgId, int msgType, string message, string origExchange)
 {
     UpdateNewsBulletin?.Invoke(new UpdateNewsBulletinMessage(msgId, msgType, message, origExchange));
 }
 public void updateNewsBulletin(int msgId, int msgType, string message, string origExchange)
 {
     UpdateNewsBulletin.RaiseEvent(this, new UpdateNewsBulletin(msgId, msgType, message, origExchange));
 }