body
stringlengths
26
98.2k
body_hash
int64
-9,222,864,604,528,158,000
9,221,803,474B
docstring
stringlengths
1
16.8k
path
stringlengths
5
230
name
stringlengths
1
96
repository_name
stringlengths
7
89
lang
stringclasses
1 value
body_without_docstring
stringlengths
20
98.2k
def runMainLoop(self, fileName=None): 'The main loop for the browser gui.' if fileName: print(('LeoWapp running: %s...' % g.shortFileName(fileName))) else: print('LeoWapp running...') if 0: path = g.os_path_finalize_join(g.app.loadDir, '..', 'test', 'unittest.leo') c = g....
9,157,870,750,199,176,000
The main loop for the browser gui.
leo/plugins/leowapp.py
runMainLoop
Anu082000/leo-editor
python
def runMainLoop(self, fileName=None): if fileName: print(('LeoWapp running: %s...' % g.shortFileName(fileName))) else: print('LeoWapp running...') if 0: path = g.os_path_finalize_join(g.app.loadDir, '..', 'test', 'unittest.leo') c = g.openWithFileName(path, gui=self) ...
def __init__(self, lower=0, upper=0, upper_includes_max=False): '\n any number within this range should be greater than or equal to self.lower and \n less than (or less than equal to depending on whether it includes the max) self.upper\n ' self.__delta_added = False if (upper < lower): ...
-3,794,609,965,976,782,000
any number within this range should be greater than or equal to self.lower and less than (or less than equal to depending on whether it includes the max) self.upper
taln2016/icsisumm-primary-sys34_v1/nltk/nltk-0.9.2/nltk_contrib/classifier/numrange.py
__init__
hectormartinez/rougexstem
python
def __init__(self, lower=0, upper=0, upper_includes_max=False): '\n any number within this range should be greater than or equal to self.lower and \n less than (or less than equal to depending on whether it includes the max) self.upper\n ' self.__delta_added = False if (upper < lower): ...
def uncache(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.uncache`\n ' self._serialized = {}
-5,430,352,027,742,889,000
Implements :func:`autobahn.wamp.interfaces.IMessage.uncache`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
uncache
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def uncache(self): '\n \n ' self._serialized = {}
def serialize(self, serializer): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.serialize`\n ' if (not (serializer in self._serialized)): self._serialized[serializer] = serializer.serialize(self.marshal()) return self._serialized[serializer]
-967,456,505,477,449,700
Implements :func:`autobahn.wamp.interfaces.IMessage.serialize`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
serialize
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def serialize(self, serializer): '\n \n ' if (not (serializer in self._serialized)): self._serialized[serializer] = serializer.serialize(self.marshal()) return self._serialized[serializer]
def __init__(self, realm, roles, authmethods=None, authid=None): '\n\n :param realm: The URI of the WAMP realm to join.\n :type realm: unicode\n :param roles: The WAMP roles to announce.\n :type roles: list of :class:`autobahn.wamp.role.RoleFeatures`\n :param authmethods: The authentication...
-663,785,122,638,179,500
:param realm: The URI of the WAMP realm to join. :type realm: unicode :param roles: The WAMP roles to announce. :type roles: list of :class:`autobahn.wamp.role.RoleFeatures` :param authmethods: The authentication methods to announce. :type authmethods: list of unicode or None :param authid: The authentication ID to ann...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, realm, roles, authmethods=None, authid=None): '\n\n :param realm: The URI of the WAMP realm to join.\n :type realm: unicode\n :param roles: The WAMP roles to announce.\n :type roles: list of :class:`autobahn.wamp.role.RoleFeatures`\n :param authmethods: The authentication...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Hello.MESSAGE_T...
-9,074,264,159,924,783,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Hello.MESSAGE_T...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {u'roles': {}} for role in self.roles: details[u'roles'][role.ROLE] = {} for feature in role.__dict__: if ((not feature.startswith('_')) and (feature != 'ROLE') and (getatt...
2,416,302,809,581,985,300
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {u'roles': {}} for role in self.roles: details[u'roles'][role.ROLE] = {} for feature in role.__dict__: if ((not feature.startswith('_')) and (feature != 'ROLE') and (getattr(role, feature) is not None)): if (not (u'f...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP HELLO Message (realm = {0}, roles = {1}, authmethods = {2}, authid = {3})'.format(self.realm, self.roles, self.authmethods, self.authid)
5,425,367,689,014,413,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP HELLO Message (realm = {0}, roles = {1}, authmethods = {2}, authid = {3})'.format(self.realm, self.roles, self.authmethods, self.authid)
def __init__(self, session, roles, authid=None, authrole=None, authmethod=None, authprovider=None): '\n\n :param session: The WAMP session ID the other peer is assigned.\n :type session: int\n :param roles: The WAMP roles to announce.\n :type roles: list of :class:`autobahn.wamp.role.RoleFeature...
6,721,403,217,499,834,000
:param session: The WAMP session ID the other peer is assigned. :type session: int :param roles: The WAMP roles to announce. :type roles: list of :class:`autobahn.wamp.role.RoleFeatures` :param authid: The authentication ID assigned. :type authid: unicode or None :param authrole: The authentication role assigned. :type...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, session, roles, authid=None, authrole=None, authmethod=None, authprovider=None): '\n\n :param session: The WAMP session ID the other peer is assigned.\n :type session: int\n :param roles: The WAMP roles to announce.\n :type roles: list of :class:`autobahn.wamp.role.RoleFeature...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Welcome.MESSAGE...
-809,151,263,493,066,600
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Welcome.MESSAGE...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {u'roles': {}} if self.authid: details[u'authid'] = self.authid if self.authrole: details[u'authrole'] = self.authrole if self.authrole: details[u'authmethod'] = self.a...
1,819,675,321,183,616,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {u'roles': {}} if self.authid: details[u'authid'] = self.authid if self.authrole: details[u'authrole'] = self.authrole if self.authrole: details[u'authmethod'] = self.authmethod if self.authprovider: details[u'authpr...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP WELCOME Message (session = {0}, roles = {1}, authid = {2}, authrole = {3}, authmethod = {4}, authprovider = {5})'.format(self.session, self.roles, self.authid, self.authrole, self.authmethod, self.auth...
5,280,581,898,306,727,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP WELCOME Message (session = {0}, roles = {1}, authid = {2}, authrole = {3}, authmethod = {4}, authprovider = {5})'.format(self.session, self.roles, self.authid, self.authrole, self.authmethod, self.authprovider)
def __init__(self, reason, message=None): '\n\n :param reason: WAMP or application error URI for aborting reason.\n :type reason: unicode\n :param message: Optional human-readable closing message, e.g. for logging purposes.\n :type message: unicode or None\n ' assert (type(reason) == si...
-7,064,131,980,725,198,000
:param reason: WAMP or application error URI for aborting reason. :type reason: unicode :param message: Optional human-readable closing message, e.g. for logging purposes. :type message: unicode or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, reason, message=None): '\n\n :param reason: WAMP or application error URI for aborting reason.\n :type reason: unicode\n :param message: Optional human-readable closing message, e.g. for logging purposes.\n :type message: unicode or None\n ' assert (type(reason) == si...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Abort.MESSAGE_T...
1,401,950,129,522,157,600
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Abort.MESSAGE_T...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {} if self.message: details[u'message'] = self.message return [Abort.MESSAGE_TYPE, details, self.reason]
-3,461,163,658,099,199,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {} if self.message: details[u'message'] = self.message return [Abort.MESSAGE_TYPE, details, self.reason]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP ABORT Message (message = {0}, reason = {1})'.format(self.message, self.reason)
-8,310,902,822,718,359,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP ABORT Message (message = {0}, reason = {1})'.format(self.message, self.reason)
def __init__(self, method, extra=None): '\n\n :param method: The authentication method.\n :type method: unicode\n :param extra: Authentication method specific information.\n :type extra: dict or None\n ' assert (type(method) == six.text_type) assert ((extra is None) or (type(extra) ...
1,401,284,462,769,390,600
:param method: The authentication method. :type method: unicode :param extra: Authentication method specific information. :type extra: dict or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, method, extra=None): '\n\n :param method: The authentication method.\n :type method: unicode\n :param extra: Authentication method specific information.\n :type extra: dict or None\n ' assert (type(method) == six.text_type) assert ((extra is None) or (type(extra) ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Challenge.MESSA...
-2,230,605,559,852,671,700
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Challenge.MESSA...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Challenge.MESSAGE_TYPE, self.method, self.extra]
-9,182,350,914,335,521,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Challenge.MESSAGE_TYPE, self.method, self.extra]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP CHALLENGE Message (method = {0}, extra = {1})'.format(self.method, self.extra)
-7,710,646,853,727,320,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP CHALLENGE Message (method = {0}, extra = {1})'.format(self.method, self.extra)
def __init__(self, signature, extra=None): '\n\n :param signature: The signature for the authentication challenge.\n :type signature: unicode\n :param extra: Authentication method specific information.\n :type extra: dict or None\n ' assert (type(signature) == six.text_type) assert ...
2,623,983,776,764,532,700
:param signature: The signature for the authentication challenge. :type signature: unicode :param extra: Authentication method specific information. :type extra: dict or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, signature, extra=None): '\n\n :param signature: The signature for the authentication challenge.\n :type signature: unicode\n :param extra: Authentication method specific information.\n :type extra: dict or None\n ' assert (type(signature) == six.text_type) assert ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Authenticate.ME...
6,139,271,799,813,657,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Authenticate.ME...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Authenticate.MESSAGE_TYPE, self.signature, self.extra]
-6,435,238,085,168,985,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Authenticate.MESSAGE_TYPE, self.signature, self.extra]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP AUTHENTICATE Message (signature = {0}, extra = {1})'.format(self.signature, self.extra)
8,850,050,369,419,939,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP AUTHENTICATE Message (signature = {0}, extra = {1})'.format(self.signature, self.extra)
def __init__(self, reason=DEFAULT_REASON, message=None): '\n\n :param reason: Optional WAMP or application error URI for closing reason.\n :type reason: unicode\n :param message: Optional human-readable closing message, e.g. for logging purposes.\n :type message: unicode or None\n ' ass...
-8,878,451,259,387,417,000
:param reason: Optional WAMP or application error URI for closing reason. :type reason: unicode :param message: Optional human-readable closing message, e.g. for logging purposes. :type message: unicode or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, reason=DEFAULT_REASON, message=None): '\n\n :param reason: Optional WAMP or application error URI for closing reason.\n :type reason: unicode\n :param message: Optional human-readable closing message, e.g. for logging purposes.\n :type message: unicode or None\n ' ass...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Goodbye.MESSAGE...
3,091,404,400,130,898,400
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Goodbye.MESSAGE...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {} if self.message: details[u'message'] = self.message return [Goodbye.MESSAGE_TYPE, details, self.reason]
6,978,399,930,994,674,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {} if self.message: details[u'message'] = self.message return [Goodbye.MESSAGE_TYPE, details, self.reason]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP GOODBYE Message (message = {0}, reason = {1})'.format(self.message, self.reason)
5,403,774,823,011,029,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP GOODBYE Message (message = {0}, reason = {1})'.format(self.message, self.reason)
def __init__(self, incoming, outgoing, discard=None): '\n\n :param incoming: Last incoming heartbeat processed from peer.\n :type incoming: int\n :param outgoing: Outgoing heartbeat.\n :type outgoing: int\n :param discard: Optional data that is discarded by peer.\n :type discard: unico...
-5,126,619,765,292,551,000
:param incoming: Last incoming heartbeat processed from peer. :type incoming: int :param outgoing: Outgoing heartbeat. :type outgoing: int :param discard: Optional data that is discarded by peer. :type discard: unicode or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, incoming, outgoing, discard=None): '\n\n :param incoming: Last incoming heartbeat processed from peer.\n :type incoming: int\n :param outgoing: Outgoing heartbeat.\n :type outgoing: int\n :param discard: Optional data that is discarded by peer.\n :type discard: unico...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Heartbeat.MESSA...
-4,618,181,281,293,706,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Heartbeat.MESSA...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' if self.discard: return [Heartbeat.MESSAGE_TYPE, self.incoming, self.outgoing, self.discard] else: return [Heartbeat.MESSAGE_TYPE, self.incoming, self.outgoing]
-9,053,941,445,088,547,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' if self.discard: return [Heartbeat.MESSAGE_TYPE, self.incoming, self.outgoing, self.discard] else: return [Heartbeat.MESSAGE_TYPE, self.incoming, self.outgoing]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP HEARTBEAT Message (incoming {0}, outgoing = {1}, len(discard) = {2})'.format(self.incoming, self.outgoing, (len(self.discard) if self.discard else None))
-7,035,302,393,283,577,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP HEARTBEAT Message (incoming {0}, outgoing = {1}, len(discard) = {2})'.format(self.incoming, self.outgoing, (len(self.discard) if self.discard else None))
def __init__(self, request_type, request, error, args=None, kwargs=None): '\n\n :param request_type: The WAMP message type code for the original request.\n :type request_type: int\n :param request: The WAMP request ID of the original request (`Call`, `Subscribe`, ...) this error occurred for.\n ...
656,571,257,217,374,000
:param request_type: The WAMP message type code for the original request. :type request_type: int :param request: The WAMP request ID of the original request (`Call`, `Subscribe`, ...) this error occurred for. :type request: int :param error: The WAMP or application error URI for the error that occurred. :type error: u...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request_type, request, error, args=None, kwargs=None): '\n\n :param request_type: The WAMP message type code for the original request.\n :type request_type: int\n :param request: The WAMP request ID of the original request (`Call`, `Subscribe`, ...) this error occurred for.\n ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Error.MESSAGE_T...
1,801,569,104,668,441,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Error.MESSAGE_T...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {} if self.kwargs: return [self.MESSAGE_TYPE, self.request_type, self.request, details, self.error, self.args, self.kwargs] elif self.args: return [self.MESSAGE_TYPE, self.request_...
7,687,785,052,454,092,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {} if self.kwargs: return [self.MESSAGE_TYPE, self.request_type, self.request, details, self.error, self.args, self.kwargs] elif self.args: return [self.MESSAGE_TYPE, self.request_type, self.request, details, self.error, self.args] else...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP Error Message (request_type = {0}, request = {1}, error = {2}, args = {3}, kwargs = {4})'.format(self.request_type, self.request, self.error, self.args, self.kwargs)
695,279,372,613,099,400
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP Error Message (request_type = {0}, request = {1}, error = {2}, args = {3}, kwargs = {4})'.format(self.request_type, self.request, self.error, self.args, self.kwargs)
def __init__(self, request, topic, args=None, kwargs=None, acknowledge=None, excludeMe=None, exclude=None, eligible=None, discloseMe=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param topic: The WAMP or application URI of the PubSub topic the event should\...
-4,565,690,850,102,938,000
:param request: The WAMP request ID of this request. :type request: int :param topic: The WAMP or application URI of the PubSub topic the event should be published to. :type topic: unicode :param args: Positional values for application-defined event payload. Must be serializable using any serializers in use. :typ...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, topic, args=None, kwargs=None, acknowledge=None, excludeMe=None, exclude=None, eligible=None, discloseMe=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param topic: The WAMP or application URI of the PubSub topic the event should\...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Publish.MESSAGE...
3,019,815,833,378,934,300
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Publish.MESSAGE...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.acknowledge is not None): options[u'acknowledge'] = self.acknowledge if (self.excludeMe is not None): options[u'exclude_me'] = self.excludeMe if (self.exclude is no...
1,144,373,679,118,756,900
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.acknowledge is not None): options[u'acknowledge'] = self.acknowledge if (self.excludeMe is not None): options[u'exclude_me'] = self.excludeMe if (self.exclude is not None): options[u'exclude'] = self.exclude if (...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP PUBLISH Message (request = {0}, topic = {1}, args = {2}, kwargs = {3}, acknowledge = {4}, excludeMe = {5}, exclude = {6}, eligible = {7}, discloseMe = {8})'.format(self.request, self.topic, self.args, ...
588,753,222,025,310,800
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP PUBLISH Message (request = {0}, topic = {1}, args = {2}, kwargs = {3}, acknowledge = {4}, excludeMe = {5}, exclude = {6}, eligible = {7}, discloseMe = {8})'.format(self.request, self.topic, self.args, self.kwargs, self.acknowledge, self.excludeMe, self.exclude,...
def __init__(self, request, publication): '\n\n :param request: The request ID of the original `PUBLISH` request.\n :type request: int\n :param publication: The publication ID for the published event.\n :type publication: int\n ' assert (type(request) in six.integer_types) assert (t...
4,295,771,757,650,596,400
:param request: The request ID of the original `PUBLISH` request. :type request: int :param publication: The publication ID for the published event. :type publication: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, publication): '\n\n :param request: The request ID of the original `PUBLISH` request.\n :type request: int\n :param publication: The publication ID for the published event.\n :type publication: int\n ' assert (type(request) in six.integer_types) assert (t...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Published.MESSA...
-3,884,889,786,763,085,300
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Published.MESSA...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Published.MESSAGE_TYPE, self.request, self.publication]
3,169,238,331,139,957,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Published.MESSAGE_TYPE, self.request, self.publication]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP PUBLISHED Message (request = {0}, publication = {1})'.format(self.request, self.publication)
7,539,543,141,621,043,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP PUBLISHED Message (request = {0}, publication = {1})'.format(self.request, self.publication)
def __init__(self, request, topic, match=MATCH_EXACT): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param topic: The WAMP or application URI of the PubSub topic to subscribe to.\n :type topic: unicode\n :param match: The topic matching method to be used...
-4,203,042,192,525,519,400
:param request: The WAMP request ID of this request. :type request: int :param topic: The WAMP or application URI of the PubSub topic to subscribe to. :type topic: unicode :param match: The topic matching method to be used for the subscription. :type match: unicode
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, topic, match=MATCH_EXACT): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param topic: The WAMP or application URI of the PubSub topic to subscribe to.\n :type topic: unicode\n :param match: The topic matching method to be used...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Subscribe.MESSA...
3,873,781,794,385,556,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Subscribe.MESSA...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.match and (self.match != Subscribe.MATCH_EXACT)): options[u'match'] = self.match return [Subscribe.MESSAGE_TYPE, self.request, options, self.topic]
-1,644,114,748,712,464,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.match and (self.match != Subscribe.MATCH_EXACT)): options[u'match'] = self.match return [Subscribe.MESSAGE_TYPE, self.request, options, self.topic]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP SUBSCRIBE Message (request = {0}, topic = {1}, match = {2})'.format(self.request, self.topic, self.match)
-9,219,016,473,638,614,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP SUBSCRIBE Message (request = {0}, topic = {1}, match = {2})'.format(self.request, self.topic, self.match)
def __init__(self, request, subscription): '\n\n :param request: The request ID of the original ``SUBSCRIBE`` request.\n :type request: int\n :param subscription: The subscription ID for the subscribed topic (or topic pattern).\n :type subscription: int\n ' assert (type(request) in six....
-1,199,081,093,057,370,600
:param request: The request ID of the original ``SUBSCRIBE`` request. :type request: int :param subscription: The subscription ID for the subscribed topic (or topic pattern). :type subscription: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, subscription): '\n\n :param request: The request ID of the original ``SUBSCRIBE`` request.\n :type request: int\n :param subscription: The subscription ID for the subscribed topic (or topic pattern).\n :type subscription: int\n ' assert (type(request) in six....
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Subscribed.MESS...
1,194,128,863,385,672,700
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Subscribed.MESS...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Subscribed.MESSAGE_TYPE, self.request, self.subscription]
9,207,363,406,212,574,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Subscribed.MESSAGE_TYPE, self.request, self.subscription]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP SUBSCRIBED Message (request = {0}, subscription = {1})'.format(self.request, self.subscription)
-4,267,679,350,267,498,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP SUBSCRIBED Message (request = {0}, subscription = {1})'.format(self.request, self.subscription)
def __init__(self, request, subscription): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param subscription: The subscription ID for the subscription to unsubscribe from.\n :type subscription: int\n ' assert (type(request) in six.integer_types) a...
-4,122,627,609,804,850,700
:param request: The WAMP request ID of this request. :type request: int :param subscription: The subscription ID for the subscription to unsubscribe from. :type subscription: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, subscription): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param subscription: The subscription ID for the subscription to unsubscribe from.\n :type subscription: int\n ' assert (type(request) in six.integer_types) a...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unsubscribe.MES...
6,852,207,913,547,047,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unsubscribe.MES...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Unsubscribe.MESSAGE_TYPE, self.request, self.subscription]
2,689,994,447,234,143,700
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Unsubscribe.MESSAGE_TYPE, self.request, self.subscription]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP UNSUBSCRIBE Message (request = {0}, subscription = {1})'.format(self.request, self.subscription)
7,736,455,921,422,932,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP UNSUBSCRIBE Message (request = {0}, subscription = {1})'.format(self.request, self.subscription)
def __init__(self, request): '\n\n :param request: The request ID of the original ``UNSUBSCRIBE`` request.\n :type request: int\n ' assert (type(request) in six.integer_types) Message.__init__(self) self.request = request
3,717,980,141,047,857,700
:param request: The request ID of the original ``UNSUBSCRIBE`` request. :type request: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request): '\n\n :param request: The request ID of the original ``UNSUBSCRIBE`` request.\n :type request: int\n ' assert (type(request) in six.integer_types) Message.__init__(self) self.request = request
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unsubscribed.ME...
-1,833,999,806,823,052,500
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unsubscribed.ME...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Unsubscribed.MESSAGE_TYPE, self.request]
4,494,053,048,241,034,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Unsubscribed.MESSAGE_TYPE, self.request]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP UNSUBSCRIBED Message (request = {0})'.format(self.request)
4,165,905,520,912,640,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP UNSUBSCRIBED Message (request = {0})'.format(self.request)
def __init__(self, subscription, publication, args=None, kwargs=None, publisher=None): '\n\n :param subscription: The subscription ID this event is dispatched under.\n :type subscription: int\n :param publication: The publication ID of the dispatched event.\n :type publication: int\n :param...
-2,682,529,155,233,320,400
:param subscription: The subscription ID this event is dispatched under. :type subscription: int :param publication: The publication ID of the dispatched event. :type publication: int :param args: Positional values for application-defined exception. Must be serializable using any serializers in use. :type args: list...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, subscription, publication, args=None, kwargs=None, publisher=None): '\n\n :param subscription: The subscription ID this event is dispatched under.\n :type subscription: int\n :param publication: The publication ID of the dispatched event.\n :type publication: int\n :param...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Event.MESSAGE_T...
3,918,332,664,157,613,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Event.MESSAGE_T...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {} if (self.publisher is not None): details[u'publisher'] = self.publisher if self.kwargs: return [Event.MESSAGE_TYPE, self.subscription, self.publication, details, self.args, self...
2,133,001,055,609,564,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {} if (self.publisher is not None): details[u'publisher'] = self.publisher if self.kwargs: return [Event.MESSAGE_TYPE, self.subscription, self.publication, details, self.args, self.kwargs] elif self.args: return [Event.MESSAGE_T...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP EVENT Message (subscription = {0}, publication = {1}, args = {2}, kwargs = {3}, publisher = {4})'.format(self.subscription, self.publication, self.args, self.kwargs, self.publisher)
-7,227,111,583,560,457,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP EVENT Message (subscription = {0}, publication = {1}, args = {2}, kwargs = {3}, publisher = {4})'.format(self.subscription, self.publication, self.args, self.kwargs, self.publisher)
def __init__(self, request, procedure, args=None, kwargs=None, timeout=None, receive_progress=None, discloseMe=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param procedure: The WAMP or application URI of the procedure which should be called.\n :type p...
-5,463,839,319,834,373,000
:param request: The WAMP request ID of this request. :type request: int :param procedure: The WAMP or application URI of the procedure which should be called. :type procedure: unicode :param args: Positional values for application-defined call arguments. Must be serializable using any serializers in use. :type args:...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, procedure, args=None, kwargs=None, timeout=None, receive_progress=None, discloseMe=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param procedure: The WAMP or application URI of the procedure which should be called.\n :type p...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Call.MESSAGE_TY...
-1,204,407,897,505,737,200
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Call.MESSAGE_TY...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.timeout is not None): options[u'timeout'] = self.timeout if (self.receive_progress is not None): options[u'receive_progress'] = self.receive_progress if (self.discl...
6,505,781,812,456,479,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.timeout is not None): options[u'timeout'] = self.timeout if (self.receive_progress is not None): options[u'receive_progress'] = self.receive_progress if (self.discloseMe is not None): options[u'disclose_me'] = self.d...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP CALL Message (request = {0}, procedure = {1}, args = {2}, kwargs = {3}, timeout = {4}, receive_progress = {5}, discloseMe = {6})'.format(self.request, self.procedure, self.args, self.kwargs, self.timeo...
-7,615,994,762,020,056,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP CALL Message (request = {0}, procedure = {1}, args = {2}, kwargs = {3}, timeout = {4}, receive_progress = {5}, discloseMe = {6})'.format(self.request, self.procedure, self.args, self.kwargs, self.timeout, self.receive_progress, self.discloseMe)
def __init__(self, request, mode=None): '\n\n :param request: The WAMP request ID of the original `CALL` to cancel.\n :type request: int\n :param mode: Specifies how to cancel the call (``"skip"``, ``"abort"`` or ``"kill"``).\n :type mode: unicode or None\n ' assert (type(request) in si...
2,143,286,259,950,108,200
:param request: The WAMP request ID of the original `CALL` to cancel. :type request: int :param mode: Specifies how to cancel the call (``"skip"``, ``"abort"`` or ``"kill"``). :type mode: unicode or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, mode=None): '\n\n :param request: The WAMP request ID of the original `CALL` to cancel.\n :type request: int\n :param mode: Specifies how to cancel the call (``"skip"``, ``"abort"`` or ``"kill"``).\n :type mode: unicode or None\n ' assert (type(request) in si...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Cancel.MESSAGE_...
33,061,958,616,774,804
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Cancel.MESSAGE_...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.mode is not None): options[u'mode'] = self.mode return [Cancel.MESSAGE_TYPE, self.request, options]
-7,155,456,867,348,995,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.mode is not None): options[u'mode'] = self.mode return [Cancel.MESSAGE_TYPE, self.request, options]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return "WAMP CANCEL Message (request = {0}, mode = '{1}'')".format(self.request, self.mode)
-8,349,347,776,118,154,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return "WAMP CANCEL Message (request = {0}, mode = '{1})".format(self.request, self.mode)
def __init__(self, request, args=None, kwargs=None, progress=None): '\n\n :param request: The request ID of the original `CALL` request.\n :type request: int\n :param args: Positional values for application-defined event payload.\n Must be serializable using any serializers in use.\n :ty...
4,629,218,798,451,980,000
:param request: The request ID of the original `CALL` request. :type request: int :param args: Positional values for application-defined event payload. Must be serializable using any serializers in use. :type args: list or tuple or None :param kwargs: Keyword values for application-defined event payload. Must be ...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, args=None, kwargs=None, progress=None): '\n\n :param request: The request ID of the original `CALL` request.\n :type request: int\n :param args: Positional values for application-defined event payload.\n Must be serializable using any serializers in use.\n :ty...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Result.MESSAGE_...
295,355,586,542,719,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Result.MESSAGE_...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' details = {} if (self.progress is not None): details[u'progress'] = self.progress if self.kwargs: return [Result.MESSAGE_TYPE, self.request, details, self.args, self.kwargs] elif self.ar...
-275,907,170,958,222,400
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' details = {} if (self.progress is not None): details[u'progress'] = self.progress if self.kwargs: return [Result.MESSAGE_TYPE, self.request, details, self.args, self.kwargs] elif self.args: return [Result.MESSAGE_TYPE, self.request, detai...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP RESULT Message (request = {0}, args = {1}, kwargs = {2}, progress = {3})'.format(self.request, self.args, self.kwargs, self.progress)
1,076,549,161,262,454,100
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP RESULT Message (request = {0}, args = {1}, kwargs = {2}, progress = {3})'.format(self.request, self.args, self.kwargs, self.progress)
def __init__(self, request, procedure, pkeys=None, discloseCaller=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param procedure: The WAMP or application URI of the RPC endpoint provided.\n :type procedure: unicode\n :param pkeys: The endpoint can ...
2,520,915,726,341,511,000
:param request: The WAMP request ID of this request. :type request: int :param procedure: The WAMP or application URI of the RPC endpoint provided. :type procedure: unicode :param pkeys: The endpoint can work for this list of application partition keys. :type pkeys: list of int or None :param discloseCaller: If ``True`...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, procedure, pkeys=None, discloseCaller=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param procedure: The WAMP or application URI of the RPC endpoint provided.\n :type procedure: unicode\n :param pkeys: The endpoint can ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Register.MESSAG...
-3,308,798,665,377,164,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Register.MESSAG...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.pkeys is not None): options[u'pkeys'] = self.pkeys if (self.discloseCaller is not None): options[u'disclose_caller'] = self.discloseCaller return [Register.MESSAGE_...
-7,941,067,258,562,064,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.pkeys is not None): options[u'pkeys'] = self.pkeys if (self.discloseCaller is not None): options[u'disclose_caller'] = self.discloseCaller return [Register.MESSAGE_TYPE, self.request, options, self.procedure]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP REGISTER Message (request = {0}, procedure = {1}, pkeys = {2}, discloseCaller = {3})'.format(self.request, self.procedure, self.pkeys, self.discloseCaller)
-2,940,545,928,596,263,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP REGISTER Message (request = {0}, procedure = {1}, pkeys = {2}, discloseCaller = {3})'.format(self.request, self.procedure, self.pkeys, self.discloseCaller)
def __init__(self, request, registration): '\n\n :param request: The request ID of the original ``REGISTER`` request.\n :type request: int\n :param registration: The registration ID for the registered procedure (or procedure pattern).\n :type registration: int\n ' assert (type(request) ...
-2,525,965,274,203,870,700
:param request: The request ID of the original ``REGISTER`` request. :type request: int :param registration: The registration ID for the registered procedure (or procedure pattern). :type registration: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, registration): '\n\n :param request: The request ID of the original ``REGISTER`` request.\n :type request: int\n :param registration: The registration ID for the registered procedure (or procedure pattern).\n :type registration: int\n ' assert (type(request) ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Registered.MESS...
-8,914,548,201,261,089,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Registered.MESS...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Registered.MESSAGE_TYPE, self.request, self.registration]
988,125,593,362,735,900
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Registered.MESSAGE_TYPE, self.request, self.registration]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP REGISTERED Message (request = {0}, registration = {1})'.format(self.request, self.registration)
9,196,322,498,075,583,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP REGISTERED Message (request = {0}, registration = {1})'.format(self.request, self.registration)
def __init__(self, request, registration): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param registration: The registration ID for the registration to unregister.\n :type registration: int\n ' assert (type(request) in six.integer_types) assert ...
-1,648,807,967,556,353,500
:param request: The WAMP request ID of this request. :type request: int :param registration: The registration ID for the registration to unregister. :type registration: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, registration): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param registration: The registration ID for the registration to unregister.\n :type registration: int\n ' assert (type(request) in six.integer_types) assert ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unregister.MESS...
-9,079,225,318,252,179,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unregister.MESS...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Unregister.MESSAGE_TYPE, self.request, self.registration]
-3,603,885,114,003,554,300
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Unregister.MESSAGE_TYPE, self.request, self.registration]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP UNREGISTER Message (request = {0}, registration = {1})'.format(self.request, self.registration)
-7,125,596,803,116,806,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP UNREGISTER Message (request = {0}, registration = {1})'.format(self.request, self.registration)
def __init__(self, request): '\n\n :param request: The request ID of the original ``UNREGISTER`` request.\n :type request: int\n ' assert (type(request) in six.integer_types) Message.__init__(self) self.request = request
-7,183,387,760,232,620,000
:param request: The request ID of the original ``UNREGISTER`` request. :type request: int
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request): '\n\n :param request: The request ID of the original ``UNREGISTER`` request.\n :type request: int\n ' assert (type(request) in six.integer_types) Message.__init__(self) self.request = request
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unregistered.ME...
1,284,982,918,187,544,800
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Unregistered.ME...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' return [Unregistered.MESSAGE_TYPE, self.request]
-8,715,574,675,582,618,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' return [Unregistered.MESSAGE_TYPE, self.request]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP UNREGISTER Message (request = {0})'.format(self.request)
-4,433,971,098,787,501,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP UNREGISTER Message (request = {0})'.format(self.request)
def __init__(self, request, registration, args=None, kwargs=None, timeout=None, receive_progress=None, caller=None, authid=None, authrole=None, authmethod=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param registration: The registration ID of the endpoint ...
6,873,873,071,200,764,000
:param request: The WAMP request ID of this request. :type request: int :param registration: The registration ID of the endpoint to be invoked. :type registration: int :param args: Positional values for application-defined event payload. Must be serializable using any serializers in use. :type args: list or tuple or...
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, registration, args=None, kwargs=None, timeout=None, receive_progress=None, caller=None, authid=None, authrole=None, authmethod=None): '\n\n :param request: The WAMP request ID of this request.\n :type request: int\n :param registration: The registration ID of the endpoint ...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Invocation.MESS...
6,234,621,773,910,920,000
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Invocation.MESS...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.timeout is not None): options[u'timeout'] = self.timeout if (self.receive_progress is not None): options[u'receive_progress'] = self.receive_progress if (self.calle...
-6,915,880,562,159,247,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.timeout is not None): options[u'timeout'] = self.timeout if (self.receive_progress is not None): options[u'receive_progress'] = self.receive_progress if (self.caller is not None): options[u'caller'] = self.caller ...
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return 'WAMP INVOCATION Message (request = {0}, registration = {1}, args = {2}, kwargs = {3}, timeout = {4}, receive_progress = {5}, caller = {6}, authid = {7}, authrole = {8}, authmethod = {9})'.format(self.reques...
8,222,937,234,153,224,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return 'WAMP INVOCATION Message (request = {0}, registration = {1}, args = {2}, kwargs = {3}, timeout = {4}, receive_progress = {5}, caller = {6}, authid = {7}, authrole = {8}, authmethod = {9})'.format(self.request, self.registration, self.args, self.kwargs, self.timeout, ...
def __init__(self, request, mode=None): '\n\n :param request: The WAMP request ID of the original ``INVOCATION`` to interrupt.\n :type request: int\n :param mode: Specifies how to interrupt the invocation (``"abort"`` or ``"kill"``).\n :type mode: unicode or None\n ' assert (type(reques...
-5,565,241,759,184,472,000
:param request: The WAMP request ID of the original ``INVOCATION`` to interrupt. :type request: int :param mode: Specifies how to interrupt the invocation (``"abort"`` or ``"kill"``). :type mode: unicode or None
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__init__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __init__(self, request, mode=None): '\n\n :param request: The WAMP request ID of the original ``INVOCATION`` to interrupt.\n :type request: int\n :param mode: Specifies how to interrupt the invocation (``"abort"`` or ``"kill"``).\n :type mode: unicode or None\n ' assert (type(reques...
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Interrupt.MESSA...
-1,153,685,189,384,683,500
Verifies and parses an unserialized raw message into an actual WAMP message instance. :param wmsg: The unserialized raw message. :type wmsg: list :returns: An instance of this class.
ThirdParty/AutobahnPython/autobahn/wamp/message.py
parse
Crimson-MITK-ThirdParty/VTK-7.0.0
python
@staticmethod def parse(wmsg): '\n Verifies and parses an unserialized raw message into an actual WAMP message instance.\n\n :param wmsg: The unserialized raw message.\n :type wmsg: list\n\n :returns: An instance of this class.\n ' assert ((len(wmsg) > 0) and (wmsg[0] == Interrupt.MESSA...
def marshal(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`\n ' options = {} if (self.mode is not None): options[u'mode'] = self.mode return [Interrupt.MESSAGE_TYPE, self.request, options]
9,030,953,420,861,546,000
Implements :func:`autobahn.wamp.interfaces.IMessage.marshal`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
marshal
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def marshal(self): '\n \n ' options = {} if (self.mode is not None): options[u'mode'] = self.mode return [Interrupt.MESSAGE_TYPE, self.request, options]
def __str__(self): '\n Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`\n ' return "WAMP INTERRUPT Message (request = {0}, mode = '{1}')".format(self.request, self.mode)
5,848,615,295,976,145,000
Implements :func:`autobahn.wamp.interfaces.IMessage.__str__`
ThirdParty/AutobahnPython/autobahn/wamp/message.py
__str__
Crimson-MITK-ThirdParty/VTK-7.0.0
python
def __str__(self): '\n \n ' return "WAMP INTERRUPT Message (request = {0}, mode = '{1}')".format(self.request, self.mode)