Package org.red5.io.object

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


        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());

        IoBuffer buf = IoBuffer.allocate(1024);
        buf.setAutoExpand(true);
View Full Code Here


        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());
      } else {
        log.info("Unhandled request: {}", setData);
        if (log.isDebugEnabled()) {
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.