Beispiel #1
0
        public StocklistConnectionListener(IRtdLightstreamerListener listener, LightstreamerClient ls, String url)
        {
            if (listener == null)
            {
                throw new ArgumentNullException("listener");
            }
            this.listener = listener;

            this.lsClient      = ls;
            this.pushServerUrl = url;
        }
 public LightstreamerClient(
     IRtdLightstreamerListener listener,
     string adapter_set, string adapter_name,
     FlowForm flowForm)
 {
     if (listener == null)
     {
         throw new ArgumentNullException("listener is null");
     }
     this.adapter_set  = adapter_set;
     this.adapter_name = adapter_name;
     this.listener     = listener;
     this.flowForm     = flowForm;
     client            = new LSClient();
 }
 public StocklistHandyTableListener(IRtdLightstreamerListener listener)
 {
     this.listener = listener;
 }