def valid_options(self) -> list:
     return [
         Prefixed('count', '--count'),
         Prefixed('timeout', '--timeout'),
         Prefixed('sync-mode', '--sync-mode'),
         Prefixed('close-sleep', '--close-sleep')
     ]
Пример #2
0
 def valid_options(self) -> list:
     return ConnectionOptionsCommon.valid_options(self) + [
         Toggle('conn-ssl', '--conn-ssl'),
         Prefixed('conn-ssl-certificate', '--conn-ssl-certificate'),
         Prefixed('conn-ssl-private-key', '--conn-ssl-private-key'),
         Toggle('conn-ws', '--conn-ws'),
         Prefixed('conn-ws-protocols', '--conn-ws-protocols'),
     ]
Пример #3
0
 def valid_options(self) -> list:
     return ConnectionOptionsCommon.valid_options(self) + [
         Prefixed('conn-auth-mechanisms', '--conn-auth-mechanisms'),
         Prefixed('conn-username', '--conn-username'),
         Prefixed('conn-password', '--conn-password'),
         Prefixed('conn-ssl-keystore-location', '--conn-ssl-keystore-location'),
         Prefixed('conn-ssl-keystore-password', '--conn-ssl-keystore-password'),
         Prefixed('conn-ssl-key-alias', '--conn-ssl-key-alias'),
         Prefixed('conn-ssl-trust-all', '--conn-ssl-trust-all'),
         Prefixed('conn-ssl-verify-host', '--conn-ssl-verify-host'),
     ]
 def valid_options(self) -> list:
     return [
         Prefixed('conn-urls', '--conn-urls'),
         Prefixed('conn-reconnect', '--conn-reconnect'),
         Prefixed('conn-reconnect-interval', '--conn-reconnect-interval'),
         Prefixed('conn-reconnect-limit', '--conn-reconnect-limit'),
         Prefixed('conn-reconnect-timeout', '--conn-reconnect-timeout'),
         Prefixed('conn-heartbeat', '--conn-heartbeat'),
         Prefixed('conn-max-frame-size', '--conn-max-frame-size')
     ]
Пример #5
0
 def valid_options(self) -> list:
     return NodeJSControlOptionsSenderReceiver.valid_options(self) + [
         Prefixed('on-release', '--on-release')
     ]
Пример #6
0
 def valid_options(self) -> list:
     return ControlOptionsCommon.valid_options(self) + [
         Prefixed('broker-url', '--broker-url')
     ]
Пример #7
0
 def valid_options(self) -> list:
     return ConnectionOptionsCommon.valid_options(self) + [
         Prefixed('conn-allowed-mechs', '--conn-allowed-mechs'),
         Prefixed('conn-ssl-certificate', '--conn-ssl-certificate'),
         Prefixed('conn-ssl-private-key', '--conn-ssl-private-key'),
     ]
 def valid_options(self) -> list:
     return super(ControlOptionsSenderReceiver, self).valid_options() + [
         Prefixed('duration', '--duration'),
         Prefixed('duration-mode', '--duration-mode'),
         Prefixed('capacity', '--capacity')
     ]
 def valid_options(self) -> list:
     return [
         Prefixed('msg-id', '--msg-id'),
         Prefixed('msg-subject', '--msg-subject'),
         Prefixed('msg-reply-to', '--msg-reply-to'),
         Prefixed('msg-durable', '--msg-durable'),
         Prefixed('msg-ttl', '--msg-ttl'),
         Prefixed('msg-priority', '--msg-priority'),
         Prefixed('msg-correlation-id', '--msg-correlation-id'),
         Prefixed('msg-user-id', '--msg-user-id'),
         Prefixed('msg-group-id', '--msg-group-id'),
         KWOption('msg-property', '--msg-property'),
         KWOption('msg-content-map-item', '--msg-content-map-item'),
         ListOption('msg-content-list-item', '--msg-content-list-item'),
         Prefixed('msg-content-from-file', '--msg-content-from-file'),
         Prefixed('msg-content', '--msg-content'),
         Prefixed('msg-content-type', '--msg-content-type'),
         Prefixed('content-type', '--content-type')
     ]
 def valid_options(self) -> list:
     return super(LinkOptionsReceiver, self).valid_options() + [
         Prefixed('link-dynamic-node-properties',
                  '--link-dynamic-node-properties')
     ]
 def valid_options(self) -> list:
     return [Prefixed('obj-ctrl', '--obj-ctrl')]
 def valid_options(self) -> list:
     return [
         Prefixed('tx-size', '--tx-size'),
         Prefixed('tx-action', '--tx-action'),
         Prefixed('tx-endloop-action', '--tx-endloop-action')
     ]
 def valid_options(self) -> list:
     return super(LoggingOptionsSenderReceiver, self).valid_options() + [
         Prefixed('log-msgs', '--log-msgs')
     ]
 def valid_options(self) -> list:
     return [
         Prefixed('log-lib', '--log-lib'),
         Prefixed('log-stats', '--log-stats')
     ]
Пример #15
0
 def valid_options(self) -> list:
     return super(NodeJSControlOptionsCommon, self).valid_options() + [
         Prefixed('broker', '--broker')
     ]
 def valid_options(self) -> list:
     return [
         Prefixed('process-reply-to', '--process-reply-to'),
         Prefixed('action', '--action'),
         Toggle('recv-browse', '--recv-browse'),
     ]
Пример #17
0
 def valid_options(self) -> list:
     return NodeJSControlOptionsCommon.valid_options(self) + [
         Prefixed('address', '--address')
     ]
 def valid_options(self) -> list:
     return PythonControlOptionsCommon.valid_options(self) + [
         Prefixed('on-release', '--on-release')
     ]