public void Init(IStreamHost host) { this.host = host; this.testoutputstream = host.CreateOutputStream<DoubleStream>("Stream Out"); this.to2 = host.CreateOutputStream<ImageStream>("Image Out"); this.p1 = host.CreateParameter<double>("Param 1"); }
public void Init(IStreamHost host) { this.host = host; this.path = host.CreateParameter<string>("Path"); this.to = host.CreateOutputStream<ImageStream>("Image Out"); }
public void Init(IStreamHost host) { this.host = host; this.testinputstream = host.CreateInputStream<IBaseStream>("Stream In"); this.testoutputstream = host.CreateOutputStream<IBaseStream>("Stream Out"); this.p1 = host.CreateParameter<double>("Param 1"); this.p2 = host.CreateParameter<double>("Param 2"); this.testoutdata = host.CreateOutput<double>("Out 1"); }