class Async::Container::Threaded

A multi-thread container which uses {Thread.fork}.

def self.multiprocess?

Indicates that this is not a multi-process container.
def self.multiprocess?
	false
end

def start(name, &block)

@parameter block [Proc] The block to execute in the child process.
@parameter name [String] The name (title) of the child process.
Start a named child thread and execute the provided block in it.
def start(name, &block)
	Child.fork(name: name, &block)
end