本文整理匯總了Java中org.apache.thrift.protocol.TTupleProtocol.writeByte方法的典型用法代碼示例。如果您正苦於以下問題:Java TTupleProtocol.writeByte方法的具體用法?Java TTupleProtocol.writeByte怎麽用?Java TTupleProtocol.writeByte使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.thrift.protocol.TTupleProtocol
的用法示例。
在下文中一共展示了TTupleProtocol.writeByte方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: write
import org.apache.thrift.protocol.TTupleProtocol; //導入方法依賴的package包/類
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, updateTaskProgressRate_args struct) throws TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetTaskId()) {
optionals.set(0);
}
if (struct.isSetNewProgressRate()) {
optionals.set(1);
}
if (struct.isSetMarkup()) {
optionals.set(2);
}
if (struct.isSetStatus()) {
optionals.set(3);
}
oprot.writeBitSet(optionals, 4);
if (struct.isSetTaskId()) {
oprot.writeString(struct.taskId);
}
if (struct.isSetNewProgressRate()) {
oprot.writeI32(struct.newProgressRate);
}
if (struct.isSetMarkup()) {
oprot.writeI32(struct.markup);
}
if (struct.isSetStatus()) {
oprot.writeByte(struct.status);
}
}
示例2: write
import org.apache.thrift.protocol.TTupleProtocol; //導入方法依賴的package包/類
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, updateTaskProgressRate_args struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetTaskId()) {
optionals.set(0);
}
if (struct.isSetNewProgressRate()) {
optionals.set(1);
}
if (struct.isSetMarkup()) {
optionals.set(2);
}
if (struct.isSetStatus()) {
optionals.set(3);
}
oprot.writeBitSet(optionals, 4);
if (struct.isSetTaskId()) {
oprot.writeString(struct.taskId);
}
if (struct.isSetNewProgressRate()) {
oprot.writeI32(struct.newProgressRate);
}
if (struct.isSetMarkup()) {
oprot.writeI32(struct.markup);
}
if (struct.isSetStatus()) {
oprot.writeByte(struct.status);
}
}
示例3: write
import org.apache.thrift.protocol.TTupleProtocol; //導入方法依賴的package包/類
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, TRegionInfo struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetStartKey()) {
optionals.set(0);
}
if (struct.isSetEndKey()) {
optionals.set(1);
}
if (struct.isSetId()) {
optionals.set(2);
}
if (struct.isSetName()) {
optionals.set(3);
}
if (struct.isSetVersion()) {
optionals.set(4);
}
if (struct.isSetServerName()) {
optionals.set(5);
}
if (struct.isSetPort()) {
optionals.set(6);
}
oprot.writeBitSet(optionals, 7);
if (struct.isSetStartKey()) {
oprot.writeBinary(struct.startKey);
}
if (struct.isSetEndKey()) {
oprot.writeBinary(struct.endKey);
}
if (struct.isSetId()) {
oprot.writeI64(struct.id);
}
if (struct.isSetName()) {
oprot.writeBinary(struct.name);
}
if (struct.isSetVersion()) {
oprot.writeByte(struct.version);
}
if (struct.isSetServerName()) {
oprot.writeBinary(struct.serverName);
}
if (struct.isSetPort()) {
oprot.writeI32(struct.port);
}
}