Home
last modified time | relevance | path

Searched refs:NoopStub (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc-java/stub/src/test/java/io/grpc/stub/
DAbstractStubTest.java48 new NoopStub(null); in channelMustNotBeNull()
53 new NoopStub(channel, null); in callOptionsMustNotBeNull()
58 new NoopStub(null, CallOptions.DEFAULT); in channelMustNotBeNull2()
63 NoopStub stub = new NoopStub(channel); in withWaitForReady()
72 class NoopStub extends AbstractStub<NoopStub> { class in AbstractStubTest
74 NoopStub(Channel channel) { in NoopStub() method in AbstractStubTest.NoopStub
78 NoopStub(Channel channel, CallOptions options) { in NoopStub() method in AbstractStubTest.NoopStub
83 protected NoopStub build(Channel channel, CallOptions callOptions) { in build()
84 return new NoopStub(channel, callOptions); in build()
90 NoopStub stub = new NoopStub(channel); in withExecutor()