Ejemplo n.º 1
0
 internal Backgrounding()
 {
     inBackgrnd    = false;
     context       = null;
     this.callback = null;
     errorListener = null;
 }
Ejemplo n.º 2
0
 internal Backgrounding(IBackgroundCallback callback, Object context)
 {
     this.inBackgrnd = true;
     this.context    = context;
     this.callback   = callback;
     errorListener   = null;
 }
Ejemplo n.º 3
0
 internal Backgrounding(bool inBackground)
 {
     this.inBackgrnd = inBackground;
     this.context    = null;
     this.callback   = null;
     errorListener   = null;
 }
Ejemplo n.º 4
0
 internal Backgrounding(IBackgroundCallback callback, Object context)
 {
     this.inBackgrnd = true;
     this.context = context;
     this.callback = callback;
     errorListener = null;
 }
Ejemplo n.º 5
0
 internal Backgrounding(bool inBackground)
 {
     this.inBackgrnd = inBackground;
     this.context = null;
     this.callback = null;
     errorListener = null;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 9
0
 public PathAndBytesable <String> withUnhandledErrorListener(IUnhandledErrorListener listener)
 {
     backgrounding = new Backgrounding(backgrounding, listener);
     return(this);
 }
Ejemplo n.º 10
0
 internal Backgrounding()
 {
     inBackgrnd = false;
     context = null;
     this.callback = null;
     errorListener = null;
 }