Home | History | Annotate | Download | only in webrtc

Lines Matching defs:Stream

23 class Stream {
25 // Starts stream activity.
26 // When a stream is active, it can receive, process and deliver packets.
28 // Stops stream activity.
29 // When a stream is stopped, it can't receive, process or deliver packets.
31 // Called to notify that network state has changed, so that the stream can
38 virtual ~Stream() {}
42 class ReceiveStream : public Stream {
51 // A tag class that denotes send stream type.
52 class SendStream : public Stream {};