diff options
author | Ted Ross <tross@apache.org> | 2009-09-25 20:24:22 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-09-25 20:24:22 +0000 |
commit | 97abe1cb80434eec7308a2f611cc884dd3a10d1f (patch) | |
tree | b49a46247e68f00c12c797f5fbc41f024f784a3f /cpp/bindings/qmf/python/qmf.py | |
parent | 6214f62e118a83b4cc593298ceb0658e28662845 (diff) | |
download | qpid-python-97abe1cb80434eec7308a2f611cc884dd3a10d1f.tar.gz |
QMF updates:
- Refactored into two namespaces:
1) 'qmf' for the public QMF api (c++)
2) 'qmf::engine' for the public engine API (used for language bindings)
- Added object and first_object calls to Console (in Ruby)
- Made objects call compatible with the kwarg arguments used in the older API
- Added to_s functions to classes that needed them
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@818994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qmf/python/qmf.py')
-rw-r--r-- | cpp/bindings/qmf/python/qmf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/bindings/qmf/python/qmf.py b/cpp/bindings/qmf/python/qmf.py index 4800b327f1..383baad0e3 100644 --- a/cpp/bindings/qmf/python/qmf.py +++ b/cpp/bindings/qmf/python/qmf.py @@ -566,7 +566,7 @@ class Console: # attr_reader :impl def initialize(handler=None, kwargs={}): self._handler = handler - self.impl = qmfengine.ConsoleEngine() + self.impl = qmfengine.Console() self._event = qmfengine.ConsoleEvent() self._broker_list = [] @@ -741,7 +741,7 @@ class Agent(ConnectionHandler): self._agentLabel = label self._conn = None self._handler = handler - self.impl = qmfengine.AgentEngine(self._agentLabel) + self.impl = qmfengine.Agent(self._agentLabel) self._event = qmfengine.AgentEvent() self._xmtMessage = qmfengine.Message() |