Uses of Class
org.red5.server.net.rtmp.Channel
-
Uses of Channel in org.red5.server.net.rtmp
Modifier and TypeFieldDescriptionprivate WeakReference<Channel>
DeferredResult.channel
Weak reference to used channelprivate ConcurrentMap<Integer,
Channel> RTMPConnection.channels
Connection channelsModifier and TypeMethodDescriptionboolean
RTMPHandler.isAllowedIfRtmpPlayback
(RTMPConnection conn, Channel channel, StreamAction streamAction) protected abstract void
BaseRTMPHandler.onChunkSize
(RTMPConnection conn, Channel channel, Header source, ChunkSize chunkSize) Chunk size change event handler.protected void
RTMPHandler.onChunkSize
(RTMPConnection conn, Channel channel, Header source, ChunkSize chunkSize) Chunk size change event handler.protected void
BaseRTMPHandler.onClientBandwidth
(RTMPConnection conn, Channel channel, ClientBW message) Client bandwidth / Peer bandwidth set event handler.protected abstract void
BaseRTMPHandler.onCommand
(RTMPConnection conn, Channel channel, Header source, ICommand command) Command event handler, which current consists of an Invoke or Notify type object.protected void
RTMPHandler.onCommand
(RTMPConnection conn, Channel channel, Header source, ICommand command) Command event handler, which current consists of an Invoke or Notify type object.protected abstract void
BaseRTMPHandler.onPing
(RTMPConnection conn, Channel channel, Header source, Ping ping) Ping event handler.protected void
RTMPHandler.onPing
(RTMPConnection conn, Channel channel, Header source, Ping ping) Ping event handler.protected void
BaseRTMPHandler.onServerBandwidth
(RTMPConnection conn, Channel channel, ServerBW message) Server bandwidth / Window ACK size event handler.protected void
BaseRTMPHandler.onStreamBytesRead
(RTMPConnection conn, Channel channel, Header source, BytesRead streamBytesRead) Stream bytes read event handler.void
DeferredResult.setChannel
(Channel channel) Setter for channel. -
Uses of Channel in org.red5.server.stream
Modifier and TypeFieldDescriptionprivate Channel
OutputStream.audio
Audio channelprivate Channel
OutputStream.data
Data channelprivate Channel
OutputStream.video
Video channelModifier and TypeMethodDescriptionOutputStream.getAudio()
Getter for audio channelOutputStream.getData()
Getter for data channelOutputStream.getVideo()
Getter for video channelModifierConstructorDescriptionOutputStream
(Channel video, Channel audio, Channel data) Creates output stream from channels -
Uses of Channel in org.red5.server.stream.consumer
Modifier and TypeFieldDescriptionprivate Channel
ConnectionConsumer.audio
Audio channelprivate Channel
ConnectionConsumer.data
Data channelprivate Channel
ConnectionConsumer.video
Video channelModifierConstructorDescriptionConnectionConsumer
(Channel videoChannel, Channel audioChannel, Channel dataChannel) Create connection consumer without an RTMP connection.ConnectionConsumer
(RTMPConnection conn, Channel videoChannel, Channel audioChannel, Channel dataChannel) Create RTMP connection consumer for given connection and channels.