Beispiel #1
0
        public void Leave()
        {
            try
            {
                switch (this._roomVersion)
                {
                case RoomVersion.Base:
                    RoomPrx room = RoomPrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context));
                    room.LeaveRoom();
                    break;

                case RoomVersion.V1:
                    RoomAdmPrx roomAdm = RoomAdmPrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context), "V1");
                    roomAdm.LeaveRoom();
                    break;

                case RoomVersion.V2:
                    RoomV2Prx roomV2 = RoomV2PrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context), "V2");
                    roomV2.LeaveRoom();
                    break;
                }
            }
            finally
            {
                this._jobQueue.Destroy();
                this._jobQueue.Join();
                this._jobQueue = null;
            }
        }
Beispiel #2
0
        public void Say(string message)
        {
            if (string.IsNullOrEmpty(message))
            {
                throw new ArgumentException(Resources.Client_Join_Cannot_be_empty_or_null, "message");
            }

            IMessageCallback messageCallback = new MessageCallback(this._messageStatus);

            switch (this._roomVersion)
            {
            case RoomVersion.Base:
                RoomPrx room = RoomPrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context));
                room.begin_Say(message).whenCompleted(messageCallback.SayCallback, messageCallback.FailureCallback);
                break;

            case RoomVersion.V1:
                RoomAdmPrx roomAdm = RoomAdmPrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context), "V1");
                roomAdm.begin_Say(message).whenCompleted(messageCallback.SayCallback, messageCallback.FailureCallback);
                break;

            case RoomVersion.V2:
                RoomV2Prx roomV2 = RoomV2PrxHelper.checkedCast(this._roomAccess.RoomProxy.ice_context(this._context), "V2");
                roomV2.begin_Say(message, DateTime.Now.Ticks).whenCompleted(messageCallback.SayCallback, messageCallback.FailureCallback);
                break;
            }
        }
Beispiel #3
0
 public static RoomV2Prx uncheckedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     RoomV2Prx r = b as RoomV2Prx;
     if(r == null)
     {
         RoomV2PrxHelper h = new RoomV2PrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Beispiel #4
0
 public static RoomV2Prx uncheckedCast(Ice.ObjectPrx b, string f)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     RoomV2PrxHelper h = new RoomV2PrxHelper();
     h.copyFrom__(bb);
     return h;
 }
Beispiel #5
0
 public static RoomV2Prx read__(IceInternal.BasicStream is__)
 {
     Ice.ObjectPrx proxy = is__.readProxy();
     if(proxy != null)
     {
         RoomV2PrxHelper result = new RoomV2PrxHelper();
         result.copyFrom__(proxy);
         return result;
     }
     return null;
 }
Beispiel #6
0
 public static RoomV2Prx checkedCast(Ice.ObjectPrx b, string f, _System.Collections.Generic.Dictionary<string, string> ctx)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     try
     {
         if(bb.ice_isA("::Chat::RoomV2", ctx))
         {
             RoomV2PrxHelper h = new RoomV2PrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }
Beispiel #7
0
 public static RoomV2Prx checkedCast(Ice.ObjectPrx b, string f)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     try
     {
         if(bb.ice_isA("::Chat::RoomV2"))
         {
             RoomV2PrxHelper h = new RoomV2PrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }
Beispiel #8
0
 public static RoomV2Prx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary<string, string> ctx)
 {
     if(b == null)
     {
         return null;
     }
     RoomV2Prx r = b as RoomV2Prx;
     if((r == null) && b.ice_isA("::Chat::RoomV2", ctx))
     {
         RoomV2PrxHelper h = new RoomV2PrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Beispiel #9
0
 public static RoomV2Prx checkedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     RoomV2Prx r = b as RoomV2Prx;
     if((r == null) && b.ice_isA("::Chat::RoomV2"))
     {
         RoomV2PrxHelper h = new RoomV2PrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }