I'm using cramp famework and this action affected by race condition:

  # encoding: utf-8
  class WebsocketAction < Cramp::Websocket
    on_start :init_client
    on_finish :disconnected
    on_data :received_data

    def init_client
      @client = Client.createItem(self)
    end

    def disconnected
      @client.on_disconnect
    end

    def received_data(data)
      @client.subscribe(data)
    end

    private

    def encode_json(obj)
      Yajl::Encoder.encode(obj)
    end
  end

sometimes "disconnected" and "received_dat"a methods called before @client has been initialized maybe Fibers magic will be useful?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.