Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiosantoscode committed Feb 25, 2014
1 parent 66e8f5f commit a508d12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,19 @@ Returns a new combined stream object. Available options are:

The effect of those options is described below.

### combinedStream.pauseStreams = true
### combinedStream.pauseStreams = `true`

Whether to apply back pressure to the underlaying streams. If set to `false`,
the underlaying streams will never be paused. If set to `true`, the
underlaying streams will be paused right after being appended, as well as when
`delayedStream.pipe()` wants to throttle.

### combinedStream.maxDataSize = 2 * 1024 * 1024
### combinedStream.maxDataSize = `2 * 1024 * 1024`

The maximum amount of bytes (or characters) to buffer for all source streams.
If this value is exceeded, `combinedStream` emits an `'error'` event.

### combinedStream.dataSize = 0
### combinedStream.dataSize = `0`

The amount of bytes (or characters) currently buffered by `combinedStream`.

Expand Down

0 comments on commit a508d12

Please sign in to comment.