mirror of https://github.com/grpc/grpc-java.git
Update message framing IDs to adhere to gRPC spec
------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=69657434
This commit is contained in:
parent
7f23d5ccac
commit
cc9ca9620e
|
|
@ -27,8 +27,8 @@ public class GrpcFramingUtil {
|
|||
// Flags
|
||||
public static final byte PAYLOAD_FRAME = 0x0;
|
||||
public static final byte CONTEXT_VALUE_FRAME = 0x1;
|
||||
public static final byte STATUS_FRAME = 0x2;
|
||||
public static final byte RESERVED_FRAME = 0x3;
|
||||
public static final byte CALL_HEADER_FRAME = 0x2;
|
||||
public static final byte STATUS_FRAME = 0x3;
|
||||
public static final byte FRAME_TYPE_MASK = 0x3;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue