Class: Protobuf::Field::Fixed32Field

Inherits:
Uint32Field show all
Defined in:
lib/protobuf/message/field.rb

Constant Summary

Constants inherited from VarintField

VarintField::INT32_MAX, VarintField::INT32_MIN, VarintField::INT64_MAX, VarintField::INT64_MIN, VarintField::UINT32_MAX, VarintField::UINT64_MAX

Instance Attribute Summary

Attributes inherited from BaseField

#default, #default_value, #message_class, #name, #rule, #tag, #type

Instance Method Summary collapse

Methods inherited from Uint32Field

max, min

Methods inherited from VarintField

#acceptable?, decode, default, encode

Methods inherited from BaseField

#acceptable?, default, descriptor, #descriptor, #initialize, #initialized?, #max, #merge, #min, #optional?, #packed?, #ready?, #repeated?, #required?, #set, #to_s

Constructor Details

This class inherits a constructor from Protobuf::Field::BaseField

Instance Method Details

#decode(bytes) ⇒ Object



518
519
520
# File 'lib/protobuf/message/field.rb', line 518

def decode(bytes)
  bytes.unpack('V').first
end

#encode(value) ⇒ Object



522
523
524
# File 'lib/protobuf/message/field.rb', line 522

def encode(value)
  [value].pack('V')
end

#wire_typeObject



514
515
516
# File 'lib/protobuf/message/field.rb', line 514

def wire_type
  WireType::FIXED32
end