Interface ICefStreamWriter

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type ICefStreamWriter = interface(ICefBaseRefCounted)

Description

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))

Hierarchy

Overview

Methods

Public function Write(const ptr: Pointer; size, n: NativeUInt): NativeUInt;
Public function Seek(offset: Int64; whence: Integer): Integer;
Public function Tell: Int64;
Public function Flush: Integer;
Public function MayBlock: Boolean;

Description

Methods

Public function Write(const ptr: Pointer; size, n: NativeUInt): NativeUInt;

Write raw binary data.

Attributes
GUID['{4AA6C477-7D8A-4D5A-A704-67F900A827E7}']
Public function Seek(offset: Int64; whence: Integer): Integer;

Seek to the specified offset position. |whence| may be any one of SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on failure.

Public function Tell: Int64;

Return the current offset position.

Public function Flush: Integer;

Flush the stream.

Public 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.


Generated by PasDoc 0.16.0-snapshot.