Uses of Class
org.red5.server.net.rtmp.RTMPConnection
Packages that use RTMPConnection
Package
Description
-
Uses of RTMPConnection in org.red5.server.net.rtmp
Subclasses of RTMPConnection in org.red5.server.net.rtmpModifier and TypeClassDescriptionclassRepresents an RTMP connection using Mina.Methods in org.red5.server.net.rtmp that return RTMPConnectionModifier and TypeMethodDescriptionprotected RTMPConnectionChannel.getConnection()Getter for RTMP connection.Methods in org.red5.server.net.rtmp with parameters of type RTMPConnectionModifier and TypeMethodDescriptionvoidBaseRTMPHandler.connectionClosed(RTMPConnection conn) Connection closed.voidIRTMPHandler.connectionClosed(RTMPConnection conn) Connection closed.voidBaseRTMPHandler.connectionOpened(RTMPConnection conn) Connection open event.voidIRTMPHandler.connectionOpened(RTMPConnection conn) Connection open event.protected voidBaseRTMPHandler.handlePendingCallResult(RTMPConnection conn, Invoke invoke) Handler for pending call result.protected voidRTMPHandler.invokeCall(RTMPConnection conn, IServiceCall call) Remoting call invocation handler.voidBaseRTMPHandler.messageReceived(RTMPConnection conn, Packet packet) Message received.voidIRTMPHandler.messageReceived(RTMPConnection conn, Packet packet) Message received.voidBaseRTMPHandler.messageSent(RTMPConnection conn, Packet packet) Message sent.voidIRTMPHandler.messageSent(RTMPConnection conn, Packet packet) Message sent.protected abstract voidBaseRTMPHandler.onChunkSize(RTMPConnection conn, Channel channel, Header source, ChunkSize chunkSize) Chunk size change event handler.protected voidRTMPHandler.onChunkSize(RTMPConnection conn, Channel channel, Header source, ChunkSize chunkSize) Chunk size change event handler.protected voidBaseRTMPHandler.onClientBandwidth(RTMPConnection conn, Channel channel, ClientBW message) Client bandwidth / Peer bandwidth set event handler.protected abstract voidBaseRTMPHandler.onCommand(RTMPConnection conn, Channel channel, Header source, ICommand command) Command event handler, which current consists of an Invoke or Notify type object.protected voidRTMPHandler.onCommand(RTMPConnection conn, Channel channel, Header source, ICommand command) Command event handler, which current consists of an Invoke or Notify type object.protected abstract voidBaseRTMPHandler.onPing(RTMPConnection conn, Channel channel, Header source, Ping ping) Ping event handler.protected voidRTMPHandler.onPing(RTMPConnection conn, Channel channel, Header source, Ping ping) Ping event handler.protected voidBaseRTMPHandler.onServerBandwidth(RTMPConnection conn, Channel channel, ServerBW message) Server bandwidth / Window ACK size event handler.protected abstract voidBaseRTMPHandler.onSharedObject(RTMPConnection conn, Channel channel, Header source, SharedObjectMessage message) Shared object event handler.protected voidRTMPHandler.onSharedObject(RTMPConnection conn, Channel channel, Header source, SharedObjectMessage message) Shared object event handler.protected voidBaseRTMPHandler.onStreamBytesRead(RTMPConnection conn, Channel channel, Header source, BytesRead streamBytesRead) Stream bytes read event handler.Constructors in org.red5.server.net.rtmp with parameters of type RTMPConnectionModifierConstructorDescriptionChannel(RTMPConnection conn, int channelId) Creates channel from connection and channel idReceivedMessageTask(RTMPConnection conn, Packet packet) -
Uses of RTMPConnection in org.red5.server.net.rtmp.codec
Methods in org.red5.server.net.rtmp.codec with parameters of type RTMPConnectionModifier and TypeMethodDescriptionRTMPProtocolDecoder.decode(RTMPConnection conn, RTMPDecodeState state, org.apache.mina.core.buffer.IoBuffer in) Decodes the buffer data.RTMPProtocolDecoder.decodeBuffer(RTMPConnection conn, org.apache.mina.core.buffer.IoBuffer buffer) Decode all available objects in buffer.RTMPProtocolDecoder.decodeMessage(RTMPConnection conn, Header header, org.apache.mina.core.buffer.IoBuffer in) Decodes RTMP message event.RTMPProtocolDecoder.decodePacket(RTMPConnection conn, RTMPDecodeState state, org.apache.mina.core.buffer.IoBuffer in) Decodes an IoBuffer into a Packet. -
Uses of RTMPConnection in org.red5.server.stream.consumer
Constructors in org.red5.server.stream.consumer with parameters of type RTMPConnectionModifierConstructorDescriptionConnectionConsumer(RTMPConnection conn, Channel videoChannel, Channel audioChannel, Channel dataChannel) Create RTMP connection consumer for given connection and channels.