Uses of Class
com.wowza.wms.amf.AMFData

Packages that use AMFData
com.wowza.util   
com.wowza.wms.amf   
com.wowza.wms.client   
com.wowza.wms.module   
com.wowza.wms.response   
com.wowza.wms.sharedobject   
com.wowza.wms.stream   
 

Uses of AMFData in com.wowza.util
 

Methods in com.wowza.util that return AMFData
static AMFData[] AMFUtils.convertParams(Object[] params)
          Converts an array of Java native data values and class to AMF data types.
 

Uses of AMFData in com.wowza.wms.amf
 

Subclasses of AMFData in com.wowza.wms.amf
 class AMFDataArray
          AMFDataArray: class for marshalling data between Wowza Pro server and Flash client.
 class AMFDataByteArray
          AMFDataByteArray: class for marshalling data between Wowza Pro server and Flash client.
 class AMFDataItem
          AMFDataItem: class for marshalling data between Wowza Pro server and Flash client.
 class AMFDataList
          AMFDataItem: class for marshalling data between Wowza Pro server and Flash client.
 class AMFDataMixedArray
          AMFDataMixedArray: class for marshalling data between Wowza Pro server and Flash client.
 class AMFDataObj
          AMFDataObj: class for marshalling data between Wowza Pro server and Flash client.
 

Fields in com.wowza.wms.amf with type parameters of type AMFData
protected  java.util.Map<String,AMFData> AMFDataObj.members
           
 

Methods in com.wowza.wms.amf that return AMFData
static AMFData AMFData.deserializeInnerObject(java.nio.ByteBuffer data, AMFDataContextDeserialize context)
          Deserialize next item
 AMFData AMFDataArray.get(int index)
          Get item at index
 AMFData AMFDataList.get(int index)
          Get item at index
 AMFData AMFDataObj.get(int index)
          Return the object at a particular index.
 AMFData AMFDataObj.get(String name)
          Return the object at a particular key.
 AMFData AMFDataTrait.getInnerObj()
          Get inner object
static AMFData AMFData.getReference(java.nio.ByteBuffer data, AMFDataContextDeserialize context)
          Get AMF3 object reference
 AMFData AMFDataArray.remove(int index)
          Remove an item from the array
 AMFData AMFDataList.remove(int index)
          Remove an element from the AMFDataList object
 AMFData AMFDataObj.remove(int index)
          Remove element by index
 AMFData AMFDataObj.remove(String name)
          Remove element by key
 

Methods in com.wowza.wms.amf with parameters of type AMFData
 void AMFDataArray.add(AMFData data)
          Append a new item onto the array
 void AMFDataList.add(AMFData data)
          Append a new item onto the array
 void AMFDataArray.add(int index, AMFData data)
          Insert an item into the array
 void AMFDataList.add(int index, AMFData data)
          Insert an item into the array
 void AMFDataObj.put(String name, AMFData data)
          Put or replace object at key
 void AMFDataArray.set(int index, AMFData data)
          Set an array item
 void AMFDataList.set(int index, AMFData data)
          Set an array item
 void AMFDataTrait.setInnerObj(AMFData innerObj)
          Set inner object
static boolean AMFData.triggerAMF3Switch(AMFData data)
          Return true if the object is serialized differently in AMF3
 

Uses of AMFData in com.wowza.wms.client
 

Methods in com.wowza.wms.client with parameters of type AMFData
 void IClient.acceptConnection(AMFData successObj)
          Accept connection
 void IClient.redirectConnection(String url, String description, AMFData errorObj)
          Redirection connection (NetConnection.onStatus handler returns info.code of NetConnection.Connect.Rejected and info.ex.code of 302).
 void IClient.rejectConnection(AMFData errorObj)
          Reject connection (NetConnection.onStatus handler returns info.code of NetConnection.Connect.Rejected)
 void IClient.rejectConnection(String description, AMFData errorObj)
          Reject connection (NetConnection.onStatus handler returns info.code of NetConnection.Connect.Rejected)
 void IClient.setAcceptConnectionObj(AMFData acceptConnectionObj)
          Call this method from onConnect to add an "application" property to the info object that is passed back to the Flash client in the onStatus handler.
 

Uses of AMFData in com.wowza.wms.module
 

Methods in com.wowza.wms.module that return AMFData
protected static AMFData ModuleBase.getParam(AMFDataList params, int index)
          Get parameter by index.
 

Methods in com.wowza.wms.module with parameters of type AMFData
protected static boolean ModuleBase.sendResult(IClient client, AMFDataList params, AMFData data)
          Send a result to client method call as a AMFData object.
 

Uses of AMFData in com.wowza.wms.response
 

Methods in com.wowza.wms.response with parameters of type AMFData
 void ResponseFunction.addBody(AMFData body)
          Add AMFData to the body of the message.
 void ResponseFunction.setBody(int index, AMFData body)
          Add AMFData to the body of the message.
 

Uses of AMFData in com.wowza.wms.sharedobject
 

Methods in com.wowza.wms.sharedobject that return AMFData
 AMFData ISharedObjectSlot.getData()
          Get slot data as AMFData object.
 AMFData ISharedObject.getProperty(String slotName)
          Get slot (property) value.
 AMFData SharedObject.getProperty(String slotName)
           
 

Methods in com.wowza.wms.sharedobject with parameters of type AMFData
 void ISharedObjectSlot.init(String name, AMFData data, int slotVersion)
          Initialize shared object slot
 void SharedObject.sendInternal(String handlerName, AMFData[] params)
           
 void ISharedObjectSlot.setData(AMFData data)
          Set slot data as AMFData object.
 void ISharedObject.setProperty(String slotName, AMFData data)
          Set slot (property) value as AMFData object.
 void SharedObject.setProperty(String slotName, AMFData data)
           
 void SharedObject.setSlotValue(IClient client, String slotName, AMFData amfData)
           
 void SharedObject.setSlotValue(IClient client, String slotName, byte[] byteData, AMFData amfData)
           
 void SharedObject.setSlotValue(IClient client, String slotName, byte[] byteData, AMFData amfData, AMFDataContextDeserialize context)
           
 

Uses of AMFData in com.wowza.wms.stream
 

Methods in com.wowza.wms.stream with parameters of type AMFData
 void IMediaWriter.putMetaData(String name, AMFData value)
          Add metadata to the metadata packet.