RtspTransport

enum RtspTransport : Enum<RtspTransport> , ConvertibleToJava<RtspTransport>

Network transport utilized by the RTSP and RTP exchange: TCP or HTTP. When using TCP, the RTP packets are interleaved on the TCP RTSP connection. When using HTTP, the RTSP messages are exchanged through long lived HTTP connections, and the RTP packages are interleaved in the HTTP connections alongside the RTSP messages.

Entries

Link copied to clipboard

HTTP transport. RTSP messages are exchanged over long running HTTP requests and RTP packets are interleaved within the HTTP channel.

Link copied to clipboard

TCP transport. RTSP is used directly over TCP and RTP packets are interleaved within the TCP channel.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
val javaValue: RtspTransport
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toJava(): RtspTransport
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.