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:
ejona 2014-06-20 15:59:35 -07:00 committed by Eric Anderson
parent 7f23d5ccac
commit cc9ca9620e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
/**