mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
20 lines
445 B
Python
20 lines
445 B
Python
"""
|
|
|
|
:copyright: Copyright since 2006 by Oliver Schoenborn, all rights reserved.
|
|
:license: BSD, see LICENSE.txt for details.
|
|
|
|
"""
|
|
|
|
from pubsub import pub
|
|
|
|
def doSomething1():
|
|
pub.sendMessage('topic_1.subtopic_11',
|
|
msg='message for subtopic 11', msg2='other message', extra=123)
|
|
|
|
|
|
def doSomething2():
|
|
pub.sendMessage('topic_1', msg='message for topic 1')
|
|
pub.sendMessage('topic_2.subtopic_21', msg='message for subtopic 2')
|
|
|
|
|