Example #1
0
 def make_stream(cls, settings):
     proxy = ProxyStream()
     proxy.output = [OutputUrl(id=OutputUrl.generate_id())]
     return cls(proxy, settings)
Example #2
0
 def make_stream(cls, settings):
     proxy = ProxyStream(name=IStreamObject.DEFAULT_STREAM_NAME)
     proxy.output = [OutputUrl.make_stub()]
     IStreamObject.fill_defaults(proxy)
     return cls(proxy, settings)
Example #3
0
 def make_stream(cls, settings):
     proxy = ProxyStream(name=IStreamObject.DEFAULT_STREAM_NAME)
     proxy.output = [OutputUrl(id=OutputUrl.generate_id())]
     return cls(proxy, settings)