當前位置: 首頁>>代碼示例>>Python>>正文


Python TType.I64屬性代碼示例

本文整理匯總了Python中thrift.Thrift.TType.I64屬性的典型用法代碼示例。如果您正苦於以下問題:Python TType.I64屬性的具體用法?Python TType.I64怎麽用?Python TType.I64使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在thrift.Thrift.TType的用法示例。


在下文中一共展示了TType.I64屬性的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
        if oprot._fast_encode is not None and self.thrift_spec is not None:
            oprot.trans.write(oprot._fast_encode(self, (self.__class__, self.thrift_spec)))
            return
        oprot.writeStructBegin('PacketHeader')
        if self.major_version is not None:
            oprot.writeFieldBegin('major_version', TType.BYTE, 1)
            oprot.writeByte(self.major_version)
            oprot.writeFieldEnd()
        if self.minor_version is not None:
            oprot.writeFieldBegin('minor_version', TType.BYTE, 2)
            oprot.writeByte(self.minor_version)
            oprot.writeFieldEnd()
        if self.sender is not None:
            oprot.writeFieldBegin('sender', TType.I64, 3)
            oprot.writeI64(self.sender)
            oprot.writeFieldEnd()
        if self.level is not None:
            oprot.writeFieldBegin('level', TType.BYTE, 4)
            oprot.writeByte(self.level)
            oprot.writeFieldEnd()
        oprot.writeFieldStop()
        oprot.writeStructEnd() 
開發者ID:brunorijsman,項目名稱:rift-python,代碼行數:25,代碼來源:ttypes.py

示例2: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
        if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
            iprot._fast_decode(self, iprot, (self.__class__, self.thrift_spec))
            return
        iprot.readStructBegin()
        while True:
            (fname, ftype, fid) = iprot.readFieldBegin()
            if ftype == TType.STOP:
                break
            if fid == 1:
                if ftype == TType.I64:
                    self.originator = iprot.readI64()
                else:
                    iprot.skip(ftype)
            elif fid == 2:
                if ftype == TType.I32:
                    self.remote_id = iprot.readI32()
                else:
                    iprot.skip(ftype)
            else:
                iprot.skip(ftype)
            iprot.readFieldEnd()
        iprot.readStructEnd() 
開發者ID:brunorijsman,項目名稱:rift-python,代碼行數:25,代碼來源:ttypes.py

示例3: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
        if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
            iprot._fast_decode(self, iprot, (self.__class__, self.thrift_spec))
            return
        iprot.readStructBegin()
        while True:
            (fname, ftype, fid) = iprot.readFieldBegin()
            if ftype == TType.STOP:
                break
            if fid == 1:
                if ftype == TType.I64:
                    self.AS_sec = iprot.readI64()
                else:
                    iprot.skip(ftype)
            elif fid == 2:
                if ftype == TType.I32:
                    self.AS_nsec = iprot.readI32()
                else:
                    iprot.skip(ftype)
            else:
                iprot.skip(ftype)
            iprot.readFieldEnd()
        iprot.readStructEnd() 
開發者ID:brunorijsman,項目名稱:rift-python,代碼行數:25,代碼來源:ttypes.py

示例4: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
        if oprot._fast_encode is not None and self.thrift_spec is not None:
            oprot.trans.write(oprot._fast_encode(self, (self.__class__, self.thrift_spec)))
            return
        oprot.writeStructBegin('TIEID')
        if self.direction is not None:
            oprot.writeFieldBegin('direction', TType.I32, 1)
            oprot.writeI32(self.direction)
            oprot.writeFieldEnd()
        if self.originator is not None:
            oprot.writeFieldBegin('originator', TType.I64, 2)
            oprot.writeI64(self.originator)
            oprot.writeFieldEnd()
        if self.tietype is not None:
            oprot.writeFieldBegin('tietype', TType.I32, 3)
            oprot.writeI32(self.tietype)
            oprot.writeFieldEnd()
        if self.tie_nr is not None:
            oprot.writeFieldBegin('tie_nr', TType.I32, 4)
            oprot.writeI32(self.tie_nr)
            oprot.writeFieldEnd()
        oprot.writeFieldStop()
        oprot.writeStructEnd() 
開發者ID:brunorijsman,項目名稱:rift-python,代碼行數:25,代碼來源:ttypes.py

示例5: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
        if oprot._fast_encode is not None and self.thrift_spec is not None:
            oprot.trans.write(oprot._fast_encode(self, (self.__class__, self.thrift_spec)))
            return
        oprot.writeStructBegin('Column')
        if self.name is not None:
            oprot.writeFieldBegin('name', TType.STRING, 1)
            oprot.writeBinary(self.name)
            oprot.writeFieldEnd()
        if self.value is not None:
            oprot.writeFieldBegin('value', TType.STRING, 2)
            oprot.writeBinary(self.value)
            oprot.writeFieldEnd()
        if self.timestamp is not None:
            oprot.writeFieldBegin('timestamp', TType.I64, 3)
            oprot.writeI64(self.timestamp)
            oprot.writeFieldEnd()
        if self.ttl is not None:
            oprot.writeFieldBegin('ttl', TType.I32, 4)
            oprot.writeI32(self.ttl)
            oprot.writeFieldEnd()
        oprot.writeFieldStop()
        oprot.writeStructEnd() 
開發者ID:apache,項目名稱:cassandra-dtest,代碼行數:25,代碼來源:ttypes.py

示例6: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
        if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
            iprot._fast_decode(self, iprot, (self.__class__, self.thrift_spec))
            return
        iprot.readStructBegin()
        while True:
            (fname, ftype, fid) = iprot.readFieldBegin()
            if ftype == TType.STOP:
                break
            if fid == 1:
                if ftype == TType.STRING:
                    self.name = iprot.readBinary()
                else:
                    iprot.skip(ftype)
            elif fid == 2:
                if ftype == TType.I64:
                    self.value = iprot.readI64()
                else:
                    iprot.skip(ftype)
            else:
                iprot.skip(ftype)
            iprot.readFieldEnd()
        iprot.readStructEnd() 
開發者ID:apache,項目名稱:cassandra-dtest,代碼行數:25,代碼來源:ttypes.py

示例7: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
    if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
      oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
      return
    oprot.writeStructBegin('Column')
    if self.name is not None:
      oprot.writeFieldBegin('name', TType.STRING, 1)
      oprot.writeString(self.name)
      oprot.writeFieldEnd()
    if self.value is not None:
      oprot.writeFieldBegin('value', TType.STRING, 2)
      oprot.writeString(self.value)
      oprot.writeFieldEnd()
    if self.timestamp is not None:
      oprot.writeFieldBegin('timestamp', TType.I64, 3)
      oprot.writeI64(self.timestamp)
      oprot.writeFieldEnd()
    if self.ttl is not None:
      oprot.writeFieldBegin('ttl', TType.I32, 4)
      oprot.writeI32(self.ttl)
      oprot.writeFieldEnd()
    oprot.writeFieldStop()
    oprot.writeStructEnd() 
開發者ID:apache,項目名稱:cassandra-dtest,代碼行數:25,代碼來源:ttypes.py

示例8: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
    if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
      fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
      return
    iprot.readStructBegin()
    while True:
      (fname, ftype, fid) = iprot.readFieldBegin()
      if ftype == TType.STOP:
        break
      if fid == 1:
        if ftype == TType.STRING:
          self.name = iprot.readString();
        else:
          iprot.skip(ftype)
      elif fid == 2:
        if ftype == TType.I64:
          self.value = iprot.readI64();
        else:
          iprot.skip(ftype)
      else:
        iprot.skip(ftype)
      iprot.readFieldEnd()
    iprot.readStructEnd() 
開發者ID:apache,項目名稱:cassandra-dtest,代碼行數:25,代碼來源:ttypes.py

示例9: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
    if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
      fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
      return
    iprot.readStructBegin()
    while True:
      (fname, ftype, fid) = iprot.readFieldBegin()
      if ftype == TType.STOP:
        break
      if fid == 0:
        if ftype == TType.I64:
          self.success = iprot.readI64();
        else:
          iprot.skip(ftype)
      else:
        iprot.skip(ftype)
      iprot.readFieldEnd()
    iprot.readStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:20,代碼來源:BaseService.py

示例10: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
    if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
      oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
      return
    oprot.writeStructBegin('MetricData')
    if self.clientMetricType is not None:
      oprot.writeFieldBegin('clientMetricType', TType.I32, 1)
      oprot.writeI32(self.clientMetricType)
      oprot.writeFieldEnd()
    if self.metricName is not None:
      oprot.writeFieldBegin('metricName', TType.STRING, 2)
      oprot.writeString(self.metricName)
      oprot.writeFieldEnd()
    if self.value is not None:
      oprot.writeFieldBegin('value', TType.I64, 3)
      oprot.writeI64(self.value)
      oprot.writeFieldEnd()
    if self.timeStamp is not None:
      oprot.writeFieldBegin('timeStamp', TType.I64, 4)
      oprot.writeI64(self.timeStamp)
      oprot.writeFieldEnd()
    oprot.writeFieldStop()
    oprot.writeStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py

示例11: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
    if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
      fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
      return
    iprot.readStructBegin()
    while True:
      (fname, ftype, fid) = iprot.readFieldBegin()
      if ftype == TType.STOP:
        break
      if fid == 1:
        if ftype == TType.I32:
          self.partitionId = iprot.readI32();
        else:
          iprot.skip(ftype)
      elif fid == 2:
        if ftype == TType.I64:
          self.offset = iprot.readI64();
        else:
          iprot.skip(ftype)
      else:
        iprot.skip(ftype)
      iprot.readFieldEnd()
    iprot.readStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py

示例12: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
    if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
      fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
      return
    iprot.readStructBegin()
    while True:
      (fname, ftype, fid) = iprot.readFieldBegin()
      if ftype == TType.STOP:
        break
      if fid == 1:
        if ftype == TType.I64:
          self.readCapacity = iprot.readI64();
        else:
          iprot.skip(ftype)
      elif fid == 2:
        if ftype == TType.I64:
          self.writeCapacity = iprot.readI64();
        else:
          iprot.skip(ftype)
      else:
        iprot.skip(ftype)
      iprot.readFieldEnd()
    iprot.readStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py

示例13: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
    if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
      oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
      return
    oprot.writeStructBegin('KeysOnlyEntry')
    if self.record is not None:
      oprot.writeFieldBegin('record', TType.MAP, 1)
      oprot.writeMapBegin(TType.STRING, TType.STRUCT, len(self.record))
      for kiter391,viter392 in self.record.items():
        oprot.writeString(kiter391)
        viter392.write(oprot)
      oprot.writeMapEnd()
      oprot.writeFieldEnd()
    if self.timestamp is not None:
      oprot.writeFieldBegin('timestamp', TType.I64, 2)
      oprot.writeI64(self.timestamp)
      oprot.writeFieldEnd()
    if self.tableName is not None:
      oprot.writeFieldBegin('tableName', TType.STRING, 3)
      oprot.writeString(self.tableName)
      oprot.writeFieldEnd()
    oprot.writeFieldStop()
    oprot.writeStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py

示例14: write

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def write(self, oprot):
    if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
      oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
      return
    oprot.writeStructBegin('SendMessageResponse')
    if self.messageID is not None:
      oprot.writeFieldBegin('messageID', TType.STRING, 1)
      oprot.writeString(self.messageID)
      oprot.writeFieldEnd()
    if self.bodyLength is not None:
      oprot.writeFieldBegin('bodyLength', TType.I32, 2)
      oprot.writeI32(self.bodyLength)
      oprot.writeFieldEnd()
    if self.bodyMd5 is not None:
      oprot.writeFieldBegin('bodyMd5', TType.STRING, 3)
      oprot.writeString(self.bodyMd5)
      oprot.writeFieldEnd()
    if self.sendTimestamp is not None:
      oprot.writeFieldBegin('sendTimestamp', TType.I64, 4)
      oprot.writeI64(self.sendTimestamp)
      oprot.writeFieldEnd()
    oprot.writeFieldStop()
    oprot.writeStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py

示例15: read

# 需要導入模塊: from thrift.Thrift import TType [as 別名]
# 或者: from thrift.Thrift.TType import I64 [as 別名]
def read(self, iprot):
    if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
      fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
      return
    iprot.readStructBegin()
    while True:
      (fname, ftype, fid) = iprot.readFieldBegin()
      if ftype == TType.STOP:
        break
      if fid == 1:
        if ftype == TType.I64:
          self.readQps = iprot.readI64();
        else:
          iprot.skip(ftype)
      elif fid == 2:
        if ftype == TType.I64:
          self.writeQps = iprot.readI64();
        else:
          iprot.skip(ftype)
      else:
        iprot.skip(ftype)
      iprot.readFieldEnd()
    iprot.readStructEnd() 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:25,代碼來源:ttypes.py


注:本文中的thrift.Thrift.TType.I64屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。