class EchoMsg

A test message

Attributes

msg[R]

Public Class Methods

marshal(o) click to toggle source
# File src/ruby/spec/support/services.rb, line 26
def self.marshal(o)
  o.msg
end
new(msg: '') click to toggle source
# File src/ruby/spec/support/services.rb, line 22
def initialize(msg: '')
  @msg = msg
end
unmarshal(msg) click to toggle source
# File src/ruby/spec/support/services.rb, line 30
def self.unmarshal(msg)
  EchoMsg.new(msg: msg)
end