Sha256: c57d9e5e22d473c71f40bada2587ef799e433e9b494f2cc6e4328f5ff1e630dd

Contents?: true

Size: 304 Bytes

Versions: 1

Compression:

Stored size: 304 Bytes

Contents

require 'rubygems'

module Factor  
  module Channel
    class Listener
      attr_accessor :workflow_id, :event

      def start(params,&code)
      end

      def stop()
      end

      def initialize(workflow_id,event)
        @workflow_id=workflow_id
        @event=event
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
factor-0.1.10 lib/channel/listener.rb