Package org.red5.io.object

Examples of org.red5.io.object.Input.readMap()


        byte object = input.readDataType();
        log.debug("Dataframe params type: {}", object);
        Map<Object, Object> params;
        if (object == DataTypes.CORE_MAP) {
          // the params are sent as a Mixed-Array. Required to support the RTMP publish provided by ffmpeg/xuggler
          params = (Map<Object, Object>) input.readMap(null);
        } else {
          // read the params as a standard object
          params = (Map<Object, Object>) input.readObject(Object.class);
        }
        log.debug("Dataframe: {} params: {}", onCueOrOnMeta, params.toString());
View Full Code Here


        byte object = input.readDataType();
        log.debug("onFI params type: {}", object);
        Map<Object, Object> params;
        if (object == DataTypes.CORE_MAP) {
          // the params are sent as a Mixed-Array
          params = (Map<Object, Object>) input.readMap(null);
        } else {
          // read the params as a standard object
          params = (Map<Object, Object>) input.readObject(Object.class);
        }
        log.debug("onFI params: {}", params.toString());
View Full Code Here

        log.info("Unhandled request: {}", setData);
        if (log.isDebugEnabled()) {
          byte object = input.readDataType();
          log.debug("Params type: {}", object);
          if (object == DataTypes.CORE_MAP) {
            Map<Object, Object> params = (Map<Object, Object>) input.readMap(null);
            log.debug("Params: {}", params.toString());
          } else {
            log.debug("The unknown request was did not provide a parameter map");
          }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.