Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions core/src/main/java/io/grpc/BinaryLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,4 @@ public abstract class BinaryLog implements Closeable {
ServerMethodDefinition<ReqT, RespT> oMethodDef);

public abstract Channel wrapChannel(Channel channel);

/**
* A CallId is two byte[] arrays both of size 8 that uniquely identifies the RPC. Users are
* free to use the byte arrays however they see fit.
*/
public static final class CallId {
public final long hi;
public final long lo;

/**
* Creates an instance.
*/
public CallId(long hi, long lo) {
this.hi = hi;
this.lo = lo;
}
}
}
Loading