Package io.grpc
Class BinaryLog
- java.lang.Object
-
- io.grpc.BinaryLog
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/4017") public abstract class BinaryLog extends Object implements Closeable
A binary log that can be installed on a channel or server.Closeable.close()
must be called after all the servers and channels associated with the binary log are terminated.
-
-
Constructor Summary
Constructors Constructor Description BinaryLog()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Channel
wrapChannel(Channel channel)
abstract <ReqT,RespT>
ServerMethodDefinition<?,?>wrapMethodDefinition(ServerMethodDefinition<ReqT,RespT> oMethodDef)
-
-
-
Method Detail
-
wrapMethodDefinition
public abstract <ReqT,RespT> ServerMethodDefinition<?,?> wrapMethodDefinition(ServerMethodDefinition<ReqT,RespT> oMethodDef)
-
-