Remove local pubsub 3.3.0 code and import 4.0.0 from external package

This commit is contained in:
David Hughes
2018-03-12 11:06:21 +00:00
parent 5505161843
commit 5ac3eab051
74 changed files with 12 additions and 7182 deletions

View File

@@ -1,26 +0,0 @@
"""
Aggregates policies for pubsub. Mainly, related to messaging protocol.
:copyright: Copyright since 2006 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE_BSD_Simple.txt for details.
"""
msgProtocolTransStage = None
msgDataProtocol = 'kwargs'
msgDataArgName = None
senderKwargNameAny = False
def setMsgDataArgName(stage, listenerArgName, senderArgNameAny=False):
global senderKwargNameAny
global msgDataArgName
global msgProtocolTransStage
senderKwargNameAny = senderArgNameAny
msgDataArgName = listenerArgName
msgProtocolTransStage = stage
#print('%s' % repr(policies.msgProtocolTransStage))
#print('%s' % repr(policies.msgDataProtocol))
#print('%s' % repr(policies.senderKwargNameAny))
#print('%s' % repr(policies.msgDataArgName))
#print('override "arg1" protocol arg name: %s' % argName)