Files
Phoenix/wx/lib/pubsub/core/datamsg.py

29 lines
846 B
Python

'''
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE.txt for details.
'''
class Message:
"""
A simple container object for the two components of a message: the
topic and the user data. Each listener called by sendMessage(topic, data)
gets an instance of Message. The given 'data' is accessed
via Message.data, while the topic name is available in Message.topic::
def listener(msg):
print "data is ", msg.data
print "topic name is ", msg.topic
print msg
The example shows how a message can be converted to string.
"""
def __init__(self, topic, data):
self.topic = topic
self.data = data
def __str__(self):
return '[Topic: '+`self.topic`+', Data: '+`self.data`+']'