0

Is there an often-used name for a stream that cannot seek backwards? I was thinking of calling it a "forward stream", but would prefer a more often used term.

simonzack
  • 19,729
  • 13
  • 73
  • 118

1 Answers1

2

Unidirectional or (slightly less common) One-directional are the generic terms for that. Not only for streams, but also for datasets and other kinds of data readers/writers. Bidirectional is the counterpart.

Of course the name unidirectional only implies a single direction, without specifying that that direction is forward or backward, but I don't think I've ever heard of streams that can only read backwards, and the term is usually applied to streams that only read forwards.

GolezTrol
  • 114,394
  • 18
  • 182
  • 210