コード例 #1
0
 public static ServiceMethodDispatcherBase GetOrCreateMethodDispatcher(Type serviceInterfaceType)
 {
     lock (BuildLock)
     {
         return((ServiceMethodDispatcherBase)Singleton.GetOrBuilderMethodDispatcher(serviceInterfaceType).MethodDispatcher);
     }
 }
コード例 #2
0
 public static ActorMethodDispatcherBase GetOrCreateMethodDispatcher(Type actorInterfaceType)
 {
     lock (BuildLock)
     {
         return((ActorMethodDispatcherBase)Instance.GetOrBuilderMethodDispatcher(actorInterfaceType).MethodDispatcher);
     }
 }