Exemplo n.º 1
0
 public void HandleEvent(NoticeEvent evt, ISession session)
 {
 }
Exemplo n.º 2
0
 public void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     Write(noticeEvent.ToString());
 }
Exemplo n.º 3
0
 private static void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     Logger.Write(noticeEvent.ToString());
 }
Exemplo n.º 4
0
 public void Send(NoticeEvent message) =>
 _publisher.Publish(message);
Exemplo n.º 5
0
 public void HandleEvent(NoticeEvent evt, ISession session)
 {
     Logger.Write(evt.ToString(), session: session);
 }
Exemplo n.º 6
0
 public void Init()
 {
     mPage        = 1;
     mNoticeEvent = new NoticeEvent(ReceivedNotice);
     NetMgr.GetNotice(mNoticeEvent);
 }
 private static void HandleEvent(NoticeEvent noticeEvent, ISession session)
 {
     TestPostMessage(noticeEvent.ToString());
 }
Exemplo n.º 8
0
 protected virtual void OnNotice(RemoteServer server, ReasonEventArgs args)
 {
     NoticeEvent?.Invoke(server, args);
 }
Exemplo n.º 9
0
 protected virtual void RaiseNoticeEvent(TokenEventArgs e)
 {
     NoticeEvent?.Invoke(this, e);
 }
Exemplo n.º 10
0
 public void Init()
 {
     mPage = 1;
     mNoticeEvent = new NoticeEvent(ReceivedNotice);
     NetMgr.GetNotice(mNoticeEvent);
 }