示例#1
0
 public _Runnable_53(StreamPumper _enclosing, string logPrefix, StreamPumper.StreamType
                     type)
 {
     this._enclosing = _enclosing;
     this.logPrefix  = logPrefix;
     this.type       = type;
 }
示例#2
0
 internal StreamPumper(Log log, string logPrefix, InputStream stream, StreamPumper.StreamType
                       type)
 {
     this.log       = log;
     this.logPrefix = logPrefix;
     this.stream    = stream;
     this.type      = type;
     thread         = new Thread(new _Runnable_53(this, logPrefix, type), logPrefix +
                                 ": StreamPumper for " + type);
     thread.SetDaemon(true);
 }