Package com.wowza.wms.response
Class ResponseFunctions
- Object
- 
- com.wowza.wms.response.ResponseFunctions
 
- 
 public class ResponseFunctions extends ObjectResponseFunctions: collection of ResponseFunction objects. This interface is used to asynchronously collect up a set of client responses that will be sent to the client at the next opportunity. 
- 
- 
Constructor SummaryConstructors Constructor Description ResponseFunctions()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(ResponseFunction wmsResponseFunction)Add a function.voidclear()booleanisPending()Are there any pending items in the list.intoutput(java.io.OutputStream out, int sendChunkSize)Write all functions (in order added to list) to OutputStream.
 
- 
- 
- 
Method Detail- 
addpublic void add(ResponseFunction wmsResponseFunction) Add a function.- Parameters:
- wmsResponseFunction- function
 
 - 
clearpublic void clear() 
 - 
isPendingpublic boolean isPending() Are there any pending items in the list.- Returns:
- true if items in list
 
 - 
outputpublic int output(java.io.OutputStream out, int sendChunkSize)Write all functions (in order added to list) to OutputStream.- Parameters:
- out- OutputStream
- Returns:
- total number of bytes written
 
 
- 
 
-