Uses of Interface
org.grpcmock.definitions.response.steps.ObjectResponseActionBuilder
Packages that use ObjectResponseActionBuilder
Package
Description
-
Uses of ObjectResponseActionBuilder in org.grpcmock
Methods in org.grpcmock that return ObjectResponseActionBuilderModifier and TypeMethodDescriptionstatic <RespT> ObjectResponseActionBuilder<RespT>GrpcMock.response(RespT responseObject) Returns a response action, which will send out the given response object viaStreamObserver.onNext(V).Methods in org.grpcmock with parameters of type ObjectResponseActionBuilderModifier and TypeMethodDescriptionstatic <RespT> ObjectStreamResponseBuilderStep<RespT>GrpcMock.stream(ObjectResponseActionBuilder<RespT> responseAction) Returns a stream response, which can respond with multipleResponseAction. -
Uses of ObjectResponseActionBuilder in org.grpcmock.definitions.response
Classes in org.grpcmock.definitions.response that implement ObjectResponseActionBuilderMethods in org.grpcmock.definitions.response with parameters of type ObjectResponseActionBuilderModifier and TypeMethodDescriptionStreamResponseBuilderImpl.and(ObjectResponseActionBuilder<RespT> responseAction) -
Uses of ObjectResponseActionBuilder in org.grpcmock.definitions.response.steps
Methods in org.grpcmock.definitions.response.steps with parameters of type ObjectResponseActionBuilderModifier and TypeMethodDescriptionObjectStreamResponseBuilderStep.and(ObjectResponseActionBuilder<RespT> responseAction) Defines the nextResponseActionin the stream response. -
Uses of ObjectResponseActionBuilder in org.grpcmock.definitions.stub
Methods in org.grpcmock.definitions.stub with parameters of type ObjectResponseActionBuilderModifier and TypeMethodDescriptionClientStreamingMethodStubBuilderImpl.nextWillReturn(ObjectResponseActionBuilder<RespT> response) ServerStreamingMethodStubBuilderImpl.nextWillReturn(ObjectResponseActionBuilder<RespT> response) UnaryMethodStubBuilderImpl.nextWillReturn(ObjectResponseActionBuilder<RespT> response) ClientStreamingMethodStubBuilderImpl.willReturn(ObjectResponseActionBuilder<RespT> response) ServerStreamingMethodStubBuilderImpl.willReturn(ObjectResponseActionBuilder<RespT> response) UnaryMethodStubBuilderImpl.willReturn(ObjectResponseActionBuilder<RespT> response) -
Uses of ObjectResponseActionBuilder in org.grpcmock.definitions.stub.steps
Methods in org.grpcmock.definitions.stub.steps with parameters of type ObjectResponseActionBuilderModifier and TypeMethodDescriptionNextSingleResponseBuilderStep.nextWillReturn(ObjectResponseActionBuilder<RespT> response) Defines a singleResponsefor subsequent request call to this stub.SingleResponseBuilderStep.willReturn(ObjectResponseActionBuilder<RespT> response) Defines a singleResponsethat will be returned for the request and complete it.