コード例 #1
0
 ///
 /// <summary>Constructs the ImplAsyncServer.</summary>
 ///
 /// <param name=client></param>
 ///
 public ImplAsyncServer(RemoteAsyncClient client)
 {
     this.client            = client;
     _delegate_async_free   = my_async_free;
     _delegate_async_queued = my_async_queued;
     _delegate_sync         = my_sync;
 }
コード例 #2
0
 ///
 /// <summary>Return a new instance of AsyncServer.</summary>
 /// @param client
 ///
 public AsyncServer NewAsyncServer(RemoteAsyncClient client)
 {
     return(new ImplAsyncServer(client));
 }