Sha256: 38fb541b24b65356c3d88fbf9aecf7b1f3c945c24681a8863897621bfe671ad2

Contents?: true

Size: 433 Bytes

Versions: 6

Compression:

Stored size: 433 Bytes

Contents

module Pione
  module Front
    class RelayFront < BasicFront
      attr_reader :notification_port
      attr_reader :tuple_space_server

      # Create a new front.
      def initialize(notification_port, tuple_space)
        super(Global.relay_front_port_range)
        @notification_port = notification_port
        @tuple_space = tuple_space
      end

      def notifier
        tuple_space_provider
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pione-0.5.0 lib/pione/front/relay-front.rb
pione-0.5.0.alpha.2 lib/pione/front/relay-front.rb
pione-0.5.0.alpha.1 lib/pione/front/relay-front.rb
pione-0.4.2 lib/pione/front/relay-front.rb
pione-0.4.1 lib/pione/front/relay-front.rb
pione-0.4.0 lib/pione/front/relay-front.rb