Uses of Class
org.red5.server.net.rtmp.Channel
Packages that use Channel
-
Uses of Channel in org.red5.server.net.rtmp
Fields in org.red5.server.net.rtmp with type parameters of type ChannelModifier and TypeFieldDescriptionprivate WeakReference<Channel>
DeferredResult.channel
Weak reference to used channelprivate ConcurrentMap<Integer,
Channel> RTMPConnection.channels
Connection channelsMethods in org.red5.server.net.rtmp that return ChannelMethods in org.red5.server.net.rtmp with parameters of type ChannelModifier 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
Fields in org.red5.server.stream declared as ChannelModifier and TypeFieldDescriptionprivate Channel
OutputStream.audio
Audio channelprivate Channel
OutputStream.data
Data channelprivate Channel
OutputStream.video
Video channelMethods in org.red5.server.stream that return ChannelModifier and TypeMethodDescriptionOutputStream.getAudio()
Getter for audio channelOutputStream.getData()
Getter for data channelOutputStream.getVideo()
Getter for video channelConstructors in org.red5.server.stream with parameters of type ChannelModifierConstructorDescriptionOutputStream
(Channel video, Channel audio, Channel data) Creates output stream from channels -
Uses of Channel in org.red5.server.stream.consumer
Fields in org.red5.server.stream.consumer declared as ChannelModifier and TypeFieldDescriptionprivate Channel
ConnectionConsumer.audio
Audio channelprivate Channel
ConnectionConsumer.data
Data channelprivate Channel
ConnectionConsumer.video
Video channelConstructors in org.red5.server.stream.consumer with parameters of type 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.