type ICefStreamReader = interface(ICefBaseRefCounted)
Interface used to read data from 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_reader_t))
function Read(ptr: Pointer; size, n: NativeUInt): NativeUInt; |
|
function Seek(offset: Int64; whence: Integer): Integer; |
|
function Tell: Int64; |
|
function Eof: Boolean; |
|
function MayBlock: Boolean; |
function Read(ptr: Pointer; size, n: NativeUInt): NativeUInt; |
|
Read raw binary data. Attributes
|
function Tell: Int64; |
|
Return the current offset position. |
function Eof: Boolean; |
|
Return non-zero if at end of file. |
function MayBlock: Boolean; |
|
Return true (1) if this handler performs work like accessing the file system which may block. Used as a hint for determining the thread to access the handler from. |