private void Init()
 {
     if (this.ChannelManager == null)
     {
         this.ChannelManager = new OnlineChannelManager();
     }
     this.ChannelManager.SetSessionAction(this.SessionAction);
 }
Exemple #2
0
 public void SetOptions(IMServerEngineOption option)
 {
     this.ChannelManager       = option.ChannelManager;
     this.UserAction           = option.UserAction;
     this.OfflineMessageAction = option.OfflineMessageAction;
 }