Class SocketClient
In: daimoku-server/matrix-extensions.rb
Parent: Object

Referenced within the Simulation

A line-oriented socket client. This client uses a SocketClientHandler

class MySocketClientHandler < SocketClientHandler

  def on_input line
    @io.puts line
  end

end a = MySocketClientHandler.new IOjoe234F84W b = SocketClient.new(a, ‘127.0.0.1’, 2010)

Methods

new   sandbox=  

Public Class methods

Initialize with the Player‘s IO object

The matrix is the sandbox

[Validate]