java - Binary event protocol -
i have developed application runs headless server module.
however tool benefit 2 things:
- pluggable viewers see going on (easy enough)
- pluggable modules mean tool can generate events , should able (from client tool) connect server tool , temporarily register event subscriber can manipulate server behavior based on events (in realtime, events not async)
the first can achieved http server or likes modules require persistent connection. language of choice java i'd rather not go rmi instead opt language-agnostic protocol. ideas protocol uniquely suited situation , might have implementation in java?
another couple of options might akka (www.akka.io) actors in java and/or camel event distribution mechanisms. i'm akka guy myself.
to me, you'd write akka event handlers in java , modules.
Comments
Post a Comment