vote up 0 vote down star

What would you call a class that wraps some external process Worker (starts and stops it, reads stdin, stdout, etc.)?

  • WorkerFacade?
  • WorkerGateway?
  • WorkerWrapper?
flag
In keeping with the "how an object does it is it's business", you could simply call it Worker. – gahooa Oct 23 at 14:17

8 Answers

vote up 2 vote down

Manager, since it just controls workers

or Executive, if it has stock options!

link|flag
vote up 1 vote down

A WorkerProxy? Ok, need 15 chars....

link|flag
I like the Proxy or Facade the most. But it involves the design patterns, which do not fit too well into this situation..? – ctinnist Oct 23 at 14:13
vote up 0 vote down

WorkerWatchdog :)

link|flag
A watchdog is usually something that ensures that some resource is alive, it doesn't sound like exactly the thing described here. – Freed Oct 23 at 14:13
vote up 0 vote down

WorkerRunner...

link|flag
vote up 0 vote down

The name I would choose depends on the problem domain. For example MyProcessWatcher might be OK in some contexts, while ApacheProcessWatcher might be appropriate in others.

link|flag
vote up 0 vote down

I'd say WorkerAdapter, since it translates between your code and the external process.

link|flag
vote up 0 vote down

I think WorkerExecutor has a certain ring to it.

link|flag
vote up 0 vote down

That the external process is a "worker" is detail of your implementation, so I'd be tempted to call the class "Process" and call the instance "Worker".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.