Example #1
0
 public MockWampPubSubServerProxy(MockWampPubSubRequestManager <TMessage> parent, IWampPubSubClient <TMessage> client)
 {
     mParent = parent;
     mClient = client;
 }
 public IWampServer Create(IWampPubSubClient <MockRaw> client, IWampConnection <MockRaw> connection)
 {
     return(mFactory(client));
 }
Example #3
0
 public IWampServer GetServer(IWampPubSubClient <TMessage> client)
 {
     return(new MockWampPubSubServerProxy(this, client));
 }
 public IWampServer Create(IWampPubSubClient <TMessage> client, IWampConnection <TMessage> connection)
 {
     return(mProxyBuilder.Create(client, connection));
 }