Example #1
0
 @Override
 public String synStream(String path) throws Exception {
   if (stream == null) {
     return null;
   }
   return stream.synSendStream(path, this);
 }
Example #2
0
 @Override
 public void stream(String path, IStreamReady ready) {
   stream.sendStream(path, this, ready);
 }
Example #3
0
 public String synStream(String path, RpcClientChannel rpcChannel) throws Exception {
   return stream.synSendStream(path, rpcChannel);
 };