2004-12-05 jrandom

* Fix the recently broken SAM bridge (duh)
    * Add a new pair of SAM apps - net.i2p.sam.client.SAMStreamSink and
      net.i2p.sam.client.SAMStreamSend, mirroring the streaming lib's
      StreamSink and StreamSend apps for transferring files.
    * Make the passive flush timer fire more frequently.
This commit is contained in:
jrandom
2004-12-05 15:32:32 +00:00
committed by zzz
parent 2bbde91625
commit 61a8d679bb
6 changed files with 525 additions and 9 deletions

View File

@ -47,7 +47,7 @@ public class MessageOutputStream extends OutputStream {
_written = 0;
_closed = false;
_writeTimeout = -1;
_passiveFlushDelay = 2*1000;
_passiveFlushDelay = 500;
_flusher = new Flusher();
if (_log.shouldLog(Log.DEBUG))
_log.debug("MessageOutputStream created");