Class: Wamp::Client::Serializer::Base
- Inherits:
-
Object
- Object
- Wamp::Client::Serializer::Base
- Defined in:
- lib/wamp/client/serializer.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#deserialize(string) ⇒ Object
Deserializes the object.
-
#serialize(object) ⇒ Object
Serializes the object.
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
35 36 37 |
# File 'lib/wamp/client/serializer.rb', line 35 def type @type end |
Instance Method Details
#deserialize(string) ⇒ Object
Deserializes the object
46 47 48 |
# File 'lib/wamp/client/serializer.rb', line 46 def deserialize(string) end |
#serialize(object) ⇒ Object
Serializes the object
39 40 41 |
# File 'lib/wamp/client/serializer.rb', line 39 def serialize(object) end |