Package com.kurento.kmf.orion.entities

Examples of com.kurento.kmf.orion.entities.ContextUpdate


   *             answer from it.
   *
   */
  public ContextUpdateResponse registerContextElements(
      OrionContextElement... events) {
    ContextUpdate ctxUpdate = new ContextUpdate(APPEND, events);
    return sendRequestToOrion(ctxUpdate, UPDATE_PATH,
        ContextUpdateResponse.class);
  }
View Full Code Here


   *             the context broker at the given address, or obtaining the
   *             answer from it.
   */
  public ContextUpdateResponse updateContextElements(
      OrionContextElement... events) {
    ContextUpdate ctxUpdate = new ContextUpdate(UPDATE, events);
    return sendRequestToOrion(ctxUpdate, UPDATE_PATH,
        ContextUpdateResponse.class);
  }
View Full Code Here

   *             the context broker at the given address, or obtaining the
   *             answer from it.
   */
  public ContextUpdateResponse deleteContextElements(
      OrionContextElement... events) {
    ContextUpdate ctxUpdate = new ContextUpdate(DELETE, events);
    return sendRequestToOrion(ctxUpdate, UPDATE_PATH,
        ContextUpdateResponse.class);
  }
View Full Code Here

TOP

Related Classes of com.kurento.kmf.orion.entities.ContextUpdate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.