Пример #1
0
 internal Backgrounding()
 {
     inBackgrnd    = false;
     context       = null;
     this.callback = null;
     errorListener = null;
 }
Пример #2
0
 internal Backgrounding(IBackgroundCallback callback, Object context)
 {
     this.inBackgrnd = true;
     this.context    = context;
     this.callback   = callback;
     errorListener   = null;
 }
Пример #3
0
 internal Backgrounding(bool inBackground)
 {
     this.inBackgrnd = inBackground;
     this.context    = null;
     this.callback   = null;
     errorListener   = null;
 }
Пример #4
0
 internal Backgrounding(IBackgroundCallback callback, Object context)
 {
     this.inBackgrnd = true;
     this.context = context;
     this.callback = callback;
     errorListener = null;
 }
Пример #5
0
 internal Backgrounding(bool inBackground)
 {
     this.inBackgrnd = inBackground;
     this.context = null;
     this.callback = null;
     errorListener = null;
 }
Пример #6
0
 internal Backgrounding(Backgrounding rhs, IUnhandledErrorListener errorListener)
 {
     if (rhs == null)
     {
         rhs = new Backgrounding();
     }
     this.inBackgrnd    = rhs.inBackgrnd;
     this.context       = rhs.context;
     this.callback      = rhs.callback;
     this.errorListener = errorListener;
 }
Пример #7
0
 internal Backgrounding(Backgrounding rhs, IUnhandledErrorListener errorListener)
 {
     if (rhs == null)
     {
         rhs = new Backgrounding();
     }
     this.inBackgrnd = rhs.inBackgrnd;
     this.context = rhs.context;
     this.callback = rhs.callback;
     this.errorListener = errorListener;
 }
 public IPathable <List <String> > withUnhandledErrorListener(IUnhandledErrorListener listener)
 {
     backgrounding = new Backgrounding(backgrounding, listener);
     return(this);
 }
Пример #9
0
 public PathAndBytesable <String> withUnhandledErrorListener(IUnhandledErrorListener listener)
 {
     backgrounding = new Backgrounding(backgrounding, listener);
     return(this);
 }
Пример #10
0
 internal Backgrounding()
 {
     inBackgrnd = false;
     context = null;
     this.callback = null;
     errorListener = null;
 }