class Pione::Front::RelayFront

Attributes

notification_port[R]
tuple_space_server[R]

Public Class Methods

new(notification_port, tuple_space) click to toggle source

Create a new front.

Calls superclass method Pione::Front::BasicFront::new
# File lib/pione/front/relay-front.rb, line 8
def initialize(notification_port, tuple_space)
  super(Global.relay_front_port_range)
  @notification_port = notification_port
  @tuple_space = tuple_space
end

Public Instance Methods

notifier() click to toggle source
# File lib/pione/front/relay-front.rb, line 14
def notifier
  tuple_space_provider
end