Package com.wowza.io
Interface ITextWriter
- All Known Subinterfaces:
IDvrTextWriter
public interface ITextWriter
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the media assetboolean
exists()
Does the media asset existGet the basePath for the random access readerGet the media namegetPath()
Get the unique path to the media asset itemvoid
init
(IApplicationInstance appInstance, IMediaStream stream, String basePath, String mediaName) boolean
isAppend()
boolean
isOpen()
Is the media asset openlong
Return the lastModified date (same format as File.lastModified)long
length()
Get the media asset length in bytesvoid
open()
Open the media assetvoid
setAppend
(boolean append) void
write
(char[] cbuf) void
write
(char[] cbuf, int off, int len) void
void
-
Method Details
-
init
-
isAppend
boolean isAppend() -
setAppend
void setAppend(boolean append) -
open
Open the media asset- Throws:
IOException
-
close
Close the media asset- Throws:
IOException
-
isOpen
boolean isOpen()Is the media asset open- Returns:
- true if media asset is open
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
write
- Throws:
IOException
-
getBasePath
String getBasePath()Get the basePath for the random access reader- Returns:
- basePath for the random access reader
-
getMediaName
String getMediaName()Get the media name- Returns:
- media name
-
exists
boolean exists()Does the media asset exist- Returns:
- true if media assets exists
-
lastModified
long lastModified()Return the lastModified date (same format as File.lastModified)- Returns:
- lastModified date (same format as File.lastModified)
-
length
long length()Get the media asset length in bytes- Returns:
- media asset length in bytes
-
getPath
String getPath()Get the unique path to the media asset item- Returns:
- unique path to the media asset item
-