Module: Perennial::Protocols::JSONTransport
- Defined in:
- lib/perennial/protocols/json_transport.rb
Defined Under Namespace
Modules: InstanceMethods, MessageHandling
Constant Summary collapse
- SEPERATOR =
"\r\n".freeze
Class Method Summary collapse
Class Method Details
.included(parent) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/perennial/protocols/json_transport.rb', line 10 def self.included(parent) parent.class_eval do |parent| is :loggable include InstanceMethods include MessageHandling end end |