Lines Matching refs:deserialize

95     public function UnaryCall($channel, $method, $deserialize, $options) {  argument
96 return new UnaryCall($channel, $method, $deserialize, $options);
99 public function ClientStreamingCall($channel, $method, $deserialize, $options) { argument
100 return new ClientStreamingCall($channel, $method, $deserialize, $options);
103 public function ServerStreamingCall($channel, $method, $deserialize, $options) { argument
104 return new ServerStreamingCall($channel, $method, $deserialize, $options);
107 public function BidiStreamingCall($channel, $method, $deserialize, $options) { argument
108 return new BidiStreamingCall($channel, $method, $deserialize, $options);
125 public function UnaryCall($channel, $method, $deserialize, $options) { argument
126 return new CallInvokerChangeRequestCall($channel, $method, $deserialize, $options);
129 public function ClientStreamingCall($channel, $method, $deserialize, $options) { argument
130 return new ClientStreamingCall($channel, $method, $deserialize, $options);
133 public function ServerStreamingCall($channel, $method, $deserialize, $options) { argument
134 return new ServerStreamingCall($channel, $method, $deserialize, $options);
137 public function BidiStreamingCall($channel, $method, $deserialize, $options) { argument
138 return new BidiStreamingCall($channel, $method, $deserialize, $options);
146 public function __construct($channel, $method, $deserialize, $options) argument
148 $this->call = new \Grpc\UnaryCall($channel, $method, $deserialize, $options);