Displaying 1 result from an estimated 1 matches for "ce8c2390".
2008 Apr 10
1
Communicating Worker-to-Worker
Hi everyone,
I have two workers, a connection_worker and an interface_worker, that I want
to be able to call methods on each other. Initially I thought I could do
this:
connection_worker
def alive?
return true
end
end
interface_worker
def test_connection
if MiddleMan.worker(:connection_worker).alive?(true)
return true
end
end
end
Obviously this is a somewhat contrived