28.4.1. EventMachine::Connection

Attributy: id="EventMachine.Connection"

class Echo < EventMachine::Connection
    def initialize(*args)
        super
        # stuff here...
    end
     
    def receive_data(data)
        p data
        send_data data
        close_connection_after_writing 
    end

    def unbind
        p ' connection totally closed'
    end
end
Licence Creative Commons
Tento dokument Ruby, jehož autorem je Radek Hnilica, podléhá licenci Creative Commons Uveďte autora-Nevyužívejte dílo komerčně-Zachovejte licenci 3.0 Česká republika .