Exemplo n.º 1
0
 public Tapstream(OperationQueue queue, string accountName, string developerSecret, Config config)
 {
     del      = new DelegateImpl();
     platform = new PlatformImpl();
     listener = new CoreListenerImpl(queue);
     core     = new Core(del, platform, listener, accountName, developerSecret, config);
     core.Start();
 }
Exemplo n.º 2
0
 public Tapstream(OperationQueue queue, string accountName, string developerSecret, Config config)
 {
     del = new DelegateImpl();
     platform = new PlatformImpl();
     listener = new CoreListenerImpl(queue);
     core = new Core(del, platform, listener, accountName, developerSecret, config);
     core.Start();
 }
Exemplo n.º 3
0
 private Tapstream(string accountName, string developerSecret, Config config)
 {
     del = new DelegateImpl(this);
     platform = new PlatformImpl();
     listener = new CoreListenerImpl();
     core = new Core(del, platform, listener, accountName, developerSecret, config);
     core.Start();
 }
Exemplo n.º 4
0
 private Tapstream(string accountName, string developerSecret, Config config)
 {
     del      = new DelegateImpl(this);
     platform = new PlatformImpl();
     listener = new CoreListenerImpl();
     core     = new Core(del, platform, listener, accountName, developerSecret, config);
     core.Start();
 }
Exemplo n.º 5
0
        private Tapstream(string accountName, string developerSecret, Config config)
        {
            del      = new DelegateImpl(this);
            platform = new PlatformImpl();
            listener = new CoreListenerImpl();
#if TEST_WINPHONE || WINDOWS_PHONE
            appEventSource = new AppEventSourceImpl();
#else
            appEventSource = null;
#endif
            core = new Core(del, platform, listener, appEventSource, accountName, developerSecret, config);
            core.Start();
        }
Exemplo n.º 6
0
 private Tapstream(string accountName, string developerSecret, Config config)
 {
     del = new DelegateImpl(this);
     platform = new PlatformImpl();
     listener = new CoreListenerImpl();
     #if TEST_WINPHONE || WINDOWS_PHONE
     appEventSource = new AppEventSourceImpl();
     #else
     appEventSource = null;
     #endif
     core = new Core(del, platform, listener, appEventSource, accountName, developerSecret, config);
     core.Start();
 }