type ICefStreamWriter = interface(ICefBaseRefCounted)
Interface used to write data to a stream. The functions of this interface may be called on any thread.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_stream_capi.h">CEF source file: /include/capi/cef_stream_capi.h (cef_stream_writer_t))
![]() |
function Write(const ptr: Pointer; size, n: NativeUInt): NativeUInt; |
![]() |
function Seek(offset: Int64; whence: Integer): Integer; |
![]() |
function Tell: Int64; |
![]() |
function Flush: Integer; |
![]() |
function MayBlock: Boolean; |
![]() |
function Write(const ptr: Pointer; size, n: NativeUInt): NativeUInt; |
Write raw binary data. Attributes
|
![]() |
function Tell: Int64; |
Return the current offset position. |
![]() |
function Flush: Integer; |
Flush the stream. |
![]() |
function MayBlock: Boolean; |
Returns true (1) if this writer performs work like accessing the file system which may block. Used as a hint for determining the thread to access the writer from. |