cybertools/agent/talk
helmutm 3baf1fabb5 work in progress: talk package for generic data communication tasks
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2925 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-10-19 17:46:10 +00:00
..
__init__.py add 'talk' package providing a common communication framework 2008-10-17 20:46:28 +00:00
base.py work in progress: talk package for generic data communication tasks 2008-10-19 17:46:10 +00:00
http.py work in progress: talk package for generic data communication tasks 2008-10-19 17:46:10 +00:00
interfaces.py work in progress: talk package for generic data communication tasks 2008-10-19 17:46:10 +00:00
README.txt work in progress: talk package for generic data communication tasks 2008-10-19 10:10:50 +00:00

================================================
Agents for Job Execution and Communication Tasks
================================================

  ($Id$)


Communication Handling
======================

Communication services are provided by handlers specified in the ``talk``
package.

  >>> config = '''
  ... controller(names=['core.sample'])
  ... scheduler(name='core')
  ... logger(name='default', standard=30)
  ... talk.server(names=['http'])
  ... talk.server.http(port=8081)
  ... talk.http(handler='testing')
  ... '''
  >>> from cybertools.agent.main import setup
  >>> master = setup(config)
  Starting agent application...
  Using controllers core.sample.
  Setting up HTTP handler for port 8081.


  >>> master.servers
  [<cybertools.agent.talk.http.HttpServer object...>]