Uses of Class
net.morimekta.providence.PServiceCall
-
Packages that use PServiceCall Package Description net.morimekta.providence net.morimekta.providence.serializer -
-
Uses of PServiceCall in net.morimekta.providence
Methods in net.morimekta.providence that return PServiceCall Modifier and Type Method Description default <Request extends PMessage<Request>,Response extends PMessage<Response>>
PServiceCall<Response>PProcessor. handleCall(PServiceCall<Request> call)Handle a service call.<Request extends PMessage<Request>,Response extends PMessage<Response>>
PServiceCall<Response>PServiceCallHandler. handleCall(PServiceCall<Request> call, PService service)Handle a service call.Methods in net.morimekta.providence with parameters of type PServiceCall Modifier and Type Method Description default <Request extends PMessage<Request>,Response extends PMessage<Response>>
PServiceCall<Response>PProcessor. handleCall(PServiceCall<Request> call)Handle a service call.<Request extends PMessage<Request>,Response extends PMessage<Response>>
PServiceCall<Response>PServiceCallHandler. handleCall(PServiceCall<Request> call, PService service)Handle a service call.voidPServiceCallInstrumentation. onComplete(double duration, PServiceCall call, PServiceCall reply)After each service call this method is called with the duration, call and response objects.default voidPServiceCallInstrumentation. onTransportException(java.lang.Exception e, double duration, PServiceCall call, PServiceCall reply)Called when the service call failed in the transport layer itself with something not related to the actual service call. -
Uses of PServiceCall in net.morimekta.providence.serializer
Methods in net.morimekta.providence.serializer that return PServiceCall Modifier and Type Method Description <Message extends PMessage<Message>>
PServiceCall<Message>BinarySerializer. deserialize(java.io.InputStream is, PService service)<Message extends PMessage<Message>>
PServiceCall<Message>FastBinarySerializer. deserialize(java.io.InputStream is, PService service)<T extends PMessage<T>>
PServiceCall<T>JsonSerializer. deserialize(java.io.InputStream input, PService service)<Message extends PMessage<Message>>
PServiceCall<Message>PrettySerializer. deserialize(java.io.InputStream input, PService service)abstract <Message extends PMessage<Message>>
PServiceCall<Message>Serializer. deserialize(java.io.InputStream input, PService service)Deserialize a service call.Methods in net.morimekta.providence.serializer with parameters of type PServiceCall Modifier and Type Method Description <Message extends PMessage<Message>>
intBinarySerializer. serialize(java.io.OutputStream os, PServiceCall<Message> call)<Message extends PMessage<Message>>
intFastBinarySerializer. serialize(java.io.OutputStream os, PServiceCall<Message> call)<T extends PMessage<T>>
intJsonSerializer. serialize(java.io.OutputStream output, PServiceCall<T> call)<Message extends PMessage<Message>>
intPrettySerializer. serialize(java.io.OutputStream out, PServiceCall<Message> call)abstract <Message extends PMessage<Message>>
intSerializer. serialize(java.io.OutputStream output, PServiceCall<Message> call)Serialize a service call.
-