public final class RtspMethods extends Object
Modifier and Type | Field and Description |
---|---|
static HttpMethod |
ANNOUNCE
The ANNOUNCE posts the description of a presentation or media object
identified by the request URL to a server, or updates the client-side
session description in real-time.
|
static HttpMethod |
DESCRIBE
The DESCRIBE getMethod retrieves the description of a presentation or
media object identified by the request URL from a server.
|
static HttpMethod |
GET_PARAMETER
The GET_PARAMETER request retrieves the value of a parameter of a
presentation or stream specified in the URI.
|
static HttpMethod |
OPTIONS
The OPTIONS getMethod represents a request for information about the communication options
available on the request/response chain identified by the Request-URI.
|
static HttpMethod |
PAUSE
The PAUSE request causes the stream delivery to be interrupted
(halted) temporarily.
|
static HttpMethod |
PLAY
The PLAY getMethod tells the server to start sending data via the
mechanism specified in SETUP.
|
static HttpMethod |
RECORD
The RECORD getMethod initiates recording a range of media data according to
the presentation description.
|
static HttpMethod |
REDIRECT
The REDIRECT request informs the client that it must connect to another
server location.
|
static HttpMethod |
SET_PARAMETER
The SET_PARAMETER requests to set the value of a parameter for a
presentation or stream specified by the URI.
|
static HttpMethod |
SETUP
The SETUP request for a URI specifies the transport mechanism to be
used for the streamed media.
|
static HttpMethod |
TEARDOWN
The TEARDOWN request stops the stream delivery for the given URI,
freeing the resources associated with it.
|
Modifier and Type | Method and Description |
---|---|
static HttpMethod |
valueOf(String name)
Returns the
HttpMethod represented by the specified name. |
public static final HttpMethod OPTIONS
public static final HttpMethod DESCRIBE
public static final HttpMethod ANNOUNCE
public static final HttpMethod SETUP
public static final HttpMethod PLAY
public static final HttpMethod PAUSE
public static final HttpMethod TEARDOWN
public static final HttpMethod GET_PARAMETER
public static final HttpMethod SET_PARAMETER
public static final HttpMethod REDIRECT
public static final HttpMethod RECORD
public static HttpMethod valueOf(String name)
HttpMethod
represented by the specified name.
If the specified name is a standard RTSP getMethod name, a cached instance
will be returned. Otherwise, a new instance will be returned.Copyright © 2008–2017 The Netty Project. All rights reserved.