• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Murmur类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Murmur的典型用法代码示例。如果您正苦于以下问题:C# Murmur类的具体用法?C# Murmur怎么用?C# Murmur使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Murmur类属于命名空间,在下文中一共展示了Murmur类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Server

        public Server(Ice.Communicator iceCommunicator, string clientEndpoint, Murmur.ServerPrx proxy, string name)
        {
            Users.CollectionChanged += OnUsersCollectionChanged;
            ServerProxy = proxy;
            Name = name;
            try {
                var servant = new ServerCallback(this);
                var adapter = iceCommunicator.createObjectAdapterWithEndpoints("", clientEndpoint);
                var servantProxy = adapter.addWithUUID(servant);
                ServerCallbackProxy = Murmur.ServerCallbackPrxHelper.checkedCast(servantProxy);
                adapter.activate();

                // TODO: Allow user to provide Ice secret
                var context = new Dictionary<string, string>();
                context["secret"] = "";

                ServerProxy.ice_getConnection().setAdapter(adapter);
                ServerProxy.addCallback(ServerCallbackProxy, context);
                ServerProxy.begin_getUsers().whenCompleted(
                    users => {
                        CompleteGetUsers(users);
                    },
                    e => {
                        System.Diagnostics.Debug.WriteLine("Could not get user dictionary for {0}: {1}", Name, e.ToString());
                    }
                );
            } catch (Ice.Exception e) {
                System.Diagnostics.Debug.WriteLine("Error talking to {0}: {1}", Name, e.ToString());
            }
        }
开发者ID:jubajube,项目名称:MumbleStalker,代码行数:30,代码来源:Server.cs


示例2: contextAction

 public void contextAction(string action, Murmur.User usr, int session, int channelid, _System.Collections.Generic.Dictionary<string, string> context__)
 {
     contextAction(action, usr, session, channelid, context__, true);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例3: addContextCallback

 public void addContextCallback(int session, string action, string text, Murmur.ServerContextCallbackPrx cb, int ctx, _System.Collections.Generic.Dictionary<string, string> context__)
 {
     IceInternal.Outgoing og__ = handler__.getOutgoing("addContextCallback", Ice.OperationMode.Normal, context__);
     try
     {
         try
         {
             IceInternal.BasicStream os__ = og__.ostr();
             os__.writeInt(session);
             os__.writeString(action);
             os__.writeString(text);
             Murmur.ServerContextCallbackPrxHelper.write__(os__, cb);
             os__.writeInt(ctx);
         }
         catch(Ice.LocalException ex__)
         {
             og__.abort(ex__);
         }
         bool ok__ = og__.invoke();
         try
         {
             if(!ok__)
             {
                 try
                 {
                     og__.throwUserException();
                 }
                 catch(Murmur.InvalidCallbackException)
                 {
                     throw;
                 }
                 catch(Murmur.ServerBootedException)
                 {
                     throw;
                 }
                 catch(Ice.UserException ex__)
                 {
                     throw new Ice.UnknownUserException(ex__.ice_name(), ex__);
                 }
             }
             og__.istr().skipEmptyEncaps();
         }
         catch(Ice.LocalException ex__)
         {
             throw new IceInternal.LocalExceptionWrapper(ex__, false);
         }
     }
     finally
     {
         handler__.reclaimOutgoing(og__);
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:52,代码来源:Murmur.cs


示例4: userStateChanged

 public void userStateChanged(Murmur.User state, _System.Collections.Generic.Dictionary<string, string> context__)
 {
     IceInternal.Outgoing og__ = handler__.getOutgoing("userStateChanged", Ice.OperationMode.Idempotent, context__);
     try
     {
         try
         {
             IceInternal.BasicStream os__ = og__.ostr();
             if(state == null)
             {
                 Murmur.User tmp__ = new Murmur.User();
                 tmp__.write__(os__);
             }
             else
             {
                 state.write__(os__);
             }
         }
         catch(Ice.LocalException ex__)
         {
             og__.abort(ex__);
         }
         bool ok__ = og__.invoke();
         if(!og__.istr().isEmpty())
         {
             try
             {
                 if(!ok__)
                 {
                     try
                     {
                         og__.throwUserException();
                     }
                     catch(Ice.UserException ex__)
                     {
                         throw new Ice.UnknownUserException(ex__.ice_name(), ex__);
                     }
                 }
                 og__.istr().skipEmptyEncaps();
             }
             catch(Ice.LocalException ex__)
             {
                 throw new IceInternal.LocalExceptionWrapper(ex__, false);
             }
         }
     }
     finally
     {
         handler__.reclaimOutgoing(og__);
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:51,代码来源:Murmur.cs


示例5: write

 public static void write(IceInternal.BasicStream os__, Murmur.User[] v__)
 {
     if(v__ == null)
     {
         os__.writeSize(0);
     }
     else
     {
         os__.writeSize(v__.Length);
         for(int ix__ = 0; ix__ < v__.Length; ++ix__)
         {
             (v__[ix__] == null ? new Murmur.User() : v__[ix__]).write__(os__);
         }
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:15,代码来源:Murmur.cs


示例6: setState

 private void setState(Murmur.User state, _System.Collections.Generic.Dictionary<string, string> context__, bool explicitContext__)
 {
     if(explicitContext__ && context__ == null)
     {
         context__ = emptyContext_;
     }
     int cnt__ = 0;
     while(true)
     {
         Ice.ObjectDel_ delBase__ = null;
         try
         {
             checkTwowayOnly__("setState");
             delBase__ = getDelegate__(false);
             ServerDel_ del__ = (ServerDel_)delBase__;
             del__.setState(state, context__);
             return;
         }
         catch(IceInternal.LocalExceptionWrapper ex__)
         {
             handleExceptionWrapperRelaxed__(delBase__, ex__, null, ref cnt__);
         }
         catch(Ice.LocalException ex__)
         {
             handleException__(delBase__, ex__, null, ref cnt__);
         }
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:28,代码来源:Murmur.cs


示例7: getACL

 private void getACL(int channelid, out Murmur.ACL[] acls, out Murmur.Group[] groups, out bool inherit, _System.Collections.Generic.Dictionary<string, string> context__, bool explicitContext__)
 {
     if(explicitContext__ && context__ == null)
     {
         context__ = emptyContext_;
     }
     int cnt__ = 0;
     while(true)
     {
         Ice.ObjectDel_ delBase__ = null;
         try
         {
             checkTwowayOnly__("getACL");
             delBase__ = getDelegate__(false);
             ServerDel_ del__ = (ServerDel_)delBase__;
             del__.getACL(channelid, out acls, out groups, out inherit, context__);
             return;
         }
         catch(IceInternal.LocalExceptionWrapper ex__)
         {
             handleExceptionWrapperRelaxed__(delBase__, ex__, null, ref cnt__);
         }
         catch(Ice.LocalException ex__)
         {
             handleException__(delBase__, ex__, null, ref cnt__);
         }
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:28,代码来源:Murmur.cs


示例8: addCallback

 public void addCallback(Murmur.ServerCallbackPrx cb)
 {
     addCallback(cb, null, false);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例9: setBans

 public void setBans(Murmur.Ban[] bans, _System.Collections.Generic.Dictionary<string, string> context__)
 {
     setBans(bans, context__, true);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例10: setChannelState

 public void setChannelState(Murmur.Channel state)
 {
     setChannelState(state, null, false);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例11: removeContextCallback

 public void removeContextCallback(Murmur.ServerContextCallbackPrx cb)
 {
     removeContextCallback(cb, null, false);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例12: setACL

 public void setACL(int channelid, Murmur.ACL[] acls, Murmur.Group[] groups, bool inherit)
 {
     setACL(channelid, acls, groups, inherit, null, false);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs


示例13: stopped

 public void stopped(Murmur.ServerPrx srv, _System.Collections.Generic.Dictionary<string, string> context__)
 {
     IceInternal.Outgoing og__ = handler__.getOutgoing("stopped", Ice.OperationMode.Normal, context__);
     try
     {
         try
         {
             IceInternal.BasicStream os__ = og__.ostr();
             Murmur.ServerPrxHelper.write__(os__, srv);
         }
         catch(Ice.LocalException ex__)
         {
             og__.abort(ex__);
         }
         bool ok__ = og__.invoke();
         if(!og__.istr().isEmpty())
         {
             try
             {
                 if(!ok__)
                 {
                     try
                     {
                         og__.throwUserException();
                     }
                     catch(Ice.UserException ex__)
                     {
                         throw new Ice.UnknownUserException(ex__.ice_name(), ex__);
                     }
                 }
                 og__.istr().skipEmptyEncaps();
             }
             catch(Ice.LocalException ex__)
             {
                 throw new IceInternal.LocalExceptionWrapper(ex__, false);
             }
         }
     }
     finally
     {
         handler__.reclaimOutgoing(og__);
     }
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:43,代码来源:Murmur.cs


示例14: setAuthenticator

 public void setAuthenticator(Murmur.ServerAuthenticatorPrx auth)
 {
     setAuthenticator(auth, null, false);
 }
开发者ID:nhede,项目名称:whisper_server,代码行数:4,代码来源:Murmur.cs



注:本文中的Murmur类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# MusicClient类代码示例发布时间:2022-05-24
下一篇:
C# MultipleAddressConnectAsyncResult类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap