org.kurento.client.HttpEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-client Show documentation
Show all versions of kurento-client Show documentation
Kurento Client
The Kurento Client project allows server applications to control media server resources.
/**
* This file is generated with Kurento-maven-plugin.
* Please don't edit.
*/
package org.kurento.client;
/**
*
* Endpoint that enables Kurento to work as an HTTP server, allowing peer HTTP clients to access media.
*
**/
@org.kurento.client.internal.RemoteClass
public interface HttpEndpoint extends SessionEndpoint {
/**
*
* Obtains the URL associated to this endpoint
* @return The url as a String *
**/
String getUrl();
/**
*
* Asynchronous version of getUrl:
* {@link Continuation#onSuccess} is called when the action is
* done. If an error occurs, {@link Continuation#onError} is called.
* @see HttpEndpoint#getUrl
*
**/
void getUrl(Continuation cont);
/**
*
* Obtains the URL associated to this endpoint
* @return The url as a String *
**/
TFuture getUrl(Transaction tx);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy