$createCall<Q, R> method
- @Deprecated(r'''This method does not invoke interceptors and is superseded by $createStreamingCall and $createUnaryCall which invoke interceptors. If you are getting this warning in autogenerated protobuf client stubs, regenerate these stubs using protobuf compiler plugin version 19.2.0 or newer. ''')
- ClientMethod<
Q, R> method, - Stream<
Q> requests, { - CallOptions? options,
inherited
Implementation
@Deprecated(r'''This method does not invoke interceptors and is superseded
by $createStreamingCall and $createUnaryCall which invoke interceptors.
If you are getting this warning in autogenerated protobuf client stubs,
regenerate these stubs using protobuf compiler plugin version 19.2.0 or newer.
''')
ClientCall<Q, R> $createCall<Q, R>(
ClientMethod<Q, R> method, Stream<Q> requests,
{CallOptions? options}) {
return _channel.createCall(method, requests, _options.mergedWith(options));
}