Class: ProcessStatusChangeEvent
- Inherits:
-
Object
- Object
- ProcessStatusChangeEvent
- Includes:
- Thrift::Struct, Thrift::Struct_Union
- Defined in:
- lib/messaging_events_types.rb
Constant Summary collapse
- STATE =
1
- PROCESSIDENTITY =
2
- FIELDS =
{ STATE => {:type => ::Thrift::Types::I32, :name => 'state', :enum_class => ::ProcessState}, PROCESSIDENTITY => {:type => ::Thrift::Types::STRUCT, :name => 'processIdentity', :class => ::ProcessIdentifier} }
Instance Method Summary collapse
Instance Method Details
#struct_fields ⇒ Object
167 |
# File 'lib/messaging_events_types.rb', line 167 def struct_fields; FIELDS; end |
#validate ⇒ Object
169 170 171 172 173 174 175 |
# File 'lib/messaging_events_types.rb', line 169 def validate raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field state is unset!') unless @state raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field processIdentity is unset!') unless @processIdentity unless @state.nil? || ::ProcessState::VALID_VALUES.include?(@state) raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field state!') end end |