Stream Delphi DLL Reference Documentation

Stream

Current Version: 9.5.0.97

Provides a generic class for streaming from a source to a sink. Streams can be connected together where the sink of one feeds to the source of another.

Note: This class was added in Chilkat v9.5.0.56. Initially it will seem somewhat useless, but over time, streaming functionality will be added to existing Chilkat classes and will be prevalent in new Chilkat classes.

Create/Dispose

var
myObject: HCkStream;

begin
myObject := CkStream_Create();

// ...

CkStream_Dispose(myObject);
end;
function CkStream_Create: HCkStream; stdcall;

Creates an instance of the HCkStream object and returns a handle (i.e. a Pointer). The handle is passed in the 1st argument for the functions listed on this page.

procedure CkStream_Dispose(handle: HCkStream); stdcall;

Objects created by calling CkStream_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function.

Properties

AbortCurrent
function CkStream_getAbortCurrent(objHandle: HCkStream): wordbool; stdcall;
procedure CkStream_putAbortCurrent(objHandle: HCkStream; newPropVal: wordbool); stdcall;
Introduced in version 9.5.0.58

When set to True, causes the currently running method to abort. Methods that always finish quickly (i.e.have no length file operations or network communications) are not affected. If no method is running, then this property is automatically reset to False when the next method is called. When the abort occurs, this property is reset to False. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)

top
CanRead
function CkStream_getCanRead(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

True if the stream supports reading. Otherwise False.

Note: A stream that supports reading, which has already reached the end-of-stream, will still have a CanRead value of True. This property indicates the stream's inherent ability, and not whether or not the stream can be read at a particular moment in time.

top
CanWrite
function CkStream_getCanWrite(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

True if the stream supports writing. Otherwise False.

Note: A stream that supports writing, which has already been closed for write, will still have a CanWrite value of True. This property indicates the stream's inherent ability, and not whether or not the stream can be written at a particular moment in time.

top
DataAvailable
function CkStream_getDataAvailable(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

True if it is known for sure that data is ready and waiting to be read. False if it is not known for sure (it may be that data is immediately available, but reading the stream with a ReadTimeoutMs of 0, which is to poll the stream, is the way to find out).

top
DebugLogFilePath
procedure CkStream_getDebugLogFilePath(objHandle: HCkStream; outPropVal: HCkString); stdcall;
procedure CkStream_putDebugLogFilePath(objHandle: HCkStream; newPropVal: PWideChar); stdcall;
function CkStream__debugLogFilePath(objHandle: HCkStream): PWideChar; stdcall;

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

top
DefaultChunkSize
function CkStream_getDefaultChunkSize(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putDefaultChunkSize(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.56

The default internal chunk size for reading or writing. The default value is 65536. If this property is set to 0, it will cause the default chunk size (65536) to be used. Note: The chunk size can have significant performance impact. If performance is an issue, be sure to experiment with different chunk sizes.

top
EndOfStream
function CkStream_getEndOfStream(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

True if the end-of-stream has already been reached. When the stream has already ended, all calls to Read* methods will return False with the ReadFailReason set to 3 (already at end-of-stream).

top
HeartbeatMs
function CkStream_getHeartbeatMs(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putHeartbeatMs(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.97

The time interval, in milliseconds, between AbortCheck event callbacks. The heartbeat provides a means for an application to monitor a method call that has event callbacks, and to abort it while in progress.

top
IsWriteClosed
function CkStream_getIsWriteClosed(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

True if the stream is closed for writing. Once closed, no more data may be written to the stream.

top
LastErrorHtml
procedure CkStream_getLastErrorHtml(objHandle: HCkStream; outPropVal: HCkString); stdcall;
function CkStream__lastErrorHtml(objHandle: HCkStream): PWideChar; stdcall;

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
procedure CkStream_getLastErrorText(objHandle: HCkStream; outPropVal: HCkString); stdcall;
function CkStream__lastErrorText(objHandle: HCkStream): PWideChar; stdcall;

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
procedure CkStream_getLastErrorXml(objHandle: HCkStream; outPropVal: HCkString); stdcall;
function CkStream__lastErrorXml(objHandle: HCkStream): PWideChar; stdcall;

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
function CkStream_getLastMethodSuccess(objHandle: HCkStream): wordbool; stdcall;
procedure CkStream_putLastMethodSuccess(objHandle: HCkStream; newPropVal: wordbool); stdcall;

Indicate whether the last method call succeeded or failed. A value of True indicates success, a value of False indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = True and failure = False.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to True. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
Length
function CkStream_getLength(objHandle: HCkStream): Int64; stdcall;
procedure CkStream_putLength(objHandle: HCkStream; newPropVal: Int64); stdcall;
Introduced in version 9.5.0.56

The length (in bytes) of the stream's source. If unknown, then this property will have a value of -1. This property may be set by the application if it knows in advance the length of the stream.

top
Length32
function CkStream_getLength32(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putLength32(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.58

The length (in bytes) of the stream's source. If unknown, then this property will have a value of -1. This property may be set by the application if it knows in advance the length of the stream.

Setting this property also sets the Length property (which is a 64-bit integer).

top
NumReceived
function CkStream_getNumReceived(objHandle: HCkStream): Int64; stdcall;
Introduced in version 9.5.0.56

The number of bytes received by the stream.

top
NumSent
function CkStream_getNumSent(objHandle: HCkStream): Int64; stdcall;
Introduced in version 9.5.0.56

The number of bytes sent by the stream.

top
ReadFailReason
function CkStream_getReadFailReason(objHandle: HCkStream): Integer; stdcall;
Introduced in version 9.5.0.56

This property is automatically set when a Read* method is called. It indicates the reason for failure. Possible values are:

  1. No failure (success)
  2. Timeout, or no data is immediately available for a polling read.
  3. Aborted by an application callback.
  4. Already at end-of-stream.
  5. Fatal stream error.
  6. Out-of-memory error (this is very unlikely).

top
ReadTimeoutMs
function CkStream_getReadTimeoutMs(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putReadTimeoutMs(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.56

The maximum number of seconds to wait while reading. The default value is 30 seconds (i.e. 30000ms). A value of 0 indicates a poll. (A polling read is to return with a timeout if no data is immediately available.)

Important: For most Chilkat timeout related properties, a value of 0 indicates an infinite timeout. For this property, a value of 0 indicates a poll. If setting a timeout related property (or method argument) to zero, be sure to understand if 0 means "wait forever" or "poll".

The timeout value is not a total timeout. It is the maximum time to wait while no additional data is forthcoming.

top
SinkFile
procedure CkStream_getSinkFile(objHandle: HCkStream; outPropVal: HCkString); stdcall;
procedure CkStream_putSinkFile(objHandle: HCkStream; newPropVal: PWideChar); stdcall;
function CkStream__sinkFile(objHandle: HCkStream): PWideChar; stdcall;
Introduced in version 9.5.0.56

Sets the sink to the path of a file. The file does not need to exist at the time of setting this property. The sink file will be automatically opened on demand, when the stream is first written.

Note: This property takes priority over other potential sinks. Make sure this property is set to an empty string if the stream's sink is to be something else.

More Information and Examples
top
SinkFileAppend
function CkStream_getSinkFileAppend(objHandle: HCkStream): wordbool; stdcall;
procedure CkStream_putSinkFileAppend(objHandle: HCkStream; newPropVal: wordbool); stdcall;
Introduced in version 9.5.0.83

If True, the stream appends to the SinkFile rather than truncating and re-writing the sink file. The default value is False.

top
SourceFile
procedure CkStream_getSourceFile(objHandle: HCkStream; outPropVal: HCkString); stdcall;
procedure CkStream_putSourceFile(objHandle: HCkStream; newPropVal: PWideChar); stdcall;
function CkStream__sourceFile(objHandle: HCkStream): PWideChar; stdcall;
Introduced in version 9.5.0.56

Sets the source to the path of a file. The file does not need to exist at the time of setting this property. The source file will be automatically opened on demand, when the stream is first read.

Note: This property takes priority over other potential sources. Make sure this property is set to an empty string if the stream's source is to be something else.

More Information and Examples
top
SourceFilePart
function CkStream_getSourceFilePart(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putSourceFilePart(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.59

If the source is a file, then this property can be used to stream one part of the file. The SourceFilePartSize property defines the size (in bytes) of each part. The SourceFilePart and SourceFilePartSize have default values of 0, which means the entire SourceFile is streamed.

This property is a 0-based index. For example, if the SourceFilePartSize is 1000, then part 0 is for bytes 0 to 999, part 1 is for bytes 1000 to 1999, etc.

More Information and Examples
top
SourceFilePartSize
function CkStream_getSourceFilePartSize(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putSourceFilePartSize(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.59

If the source is a file, then this property, in conjunction with the SourceFilePart property, can be used to stream a single part of the file. This property defines the size (in bytes) of each part. The SourceFilePart and SourceFilePartSize have default values of 0, which means that by default, the entire SourceFile is streamed.

More Information and Examples
top
StringBom
function CkStream_getStringBom(objHandle: HCkStream): wordbool; stdcall;
procedure CkStream_putStringBom(objHandle: HCkStream; newPropVal: wordbool); stdcall;
Introduced in version 9.5.0.56

If True, then include the BOM when creating a string source via SetSourceString where the charset is utf-8, utf-16, etc. (The term "BOM" stands for Byte Order Mark, also known as the preamble.) Also, if True, then include the BOM when writing a string via the WriteString method. The default value of this property is False.

top
StringCharset
procedure CkStream_getStringCharset(objHandle: HCkStream; outPropVal: HCkString); stdcall;
procedure CkStream_putStringCharset(objHandle: HCkStream; newPropVal: PWideChar); stdcall;
function CkStream__stringCharset(objHandle: HCkStream): PWideChar; stdcall;
Introduced in version 9.5.0.56

Indicates the expected character encoding, such as utf-8, windows-1256, utf-16, etc. for methods that read text such as: ReadString, ReadToCRLF, ReadUntilMatch. Also controls the character encoding when writing strings with the WriteString method. The supported charsets are indicated at the link below.

The default value is "utf-8".

More Information and Examples
top
VerboseLogging
function CkStream_getVerboseLogging(objHandle: HCkStream): wordbool; stdcall;
procedure CkStream_putVerboseLogging(objHandle: HCkStream; newPropVal: wordbool); stdcall;

If set to True, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is False. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
procedure CkStream_getVersion(objHandle: HCkStream; outPropVal: HCkString); stdcall;
function CkStream__version(objHandle: HCkStream): PWideChar; stdcall;

Version of the component/library, such as "9.5.0.94"

More Information and Examples
top
WriteFailReason
function CkStream_getWriteFailReason(objHandle: HCkStream): Integer; stdcall;
Introduced in version 9.5.0.56

This property is automatically set when a Write* method is called. It indicates the reason for failure. Possible values are:

  1. No failure (success)
  2. Timeout, or unable to immediately write when the WriteTimeoutMs is 0.
  3. Aborted by an application callback.
  4. The stream has already ended.
  5. Fatal stream error.
  6. Out-of-memory error (this is very unlikely).

top
WriteTimeoutMs
function CkStream_getWriteTimeoutMs(objHandle: HCkStream): Integer; stdcall;
procedure CkStream_putWriteTimeoutMs(objHandle: HCkStream; newPropVal: Integer); stdcall;
Introduced in version 9.5.0.56

The maximum number of seconds to wait while writing. The default value is 30 seconds (i.e. 30000ms). A value of 0 indicates to return immediately if it is not possible to write to the sink immediately.

top

Methods

LoadTaskCaller
function CkStream_LoadTaskCaller(objHandle: HCkStream;
    task: HCkTask): wordbool; stdcall;
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns True for success, False for failure.

top
ReadBd
function CkStream_ReadBd(objHandle: HCkStream;
    binData: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.67

Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The incoming data is appended to binData.

Returns True for success, False for failure.

More Information and Examples
top
ReadBdAsync (1)
function CkStream_ReadBdAsync(objHandle: HCkStream;
    binData: HCkBinData): HCkTask; stdcall;
Introduced in version 9.5.0.67

Creates an asynchronous task to call the ReadBd method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

More Information and Examples
top
ReadBytes
function CkStream_ReadBytes(objHandle: HCkStream;
    outBytes: HCkByteData): wordbool; stdcall;
Introduced in version 9.5.0.56

Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive.

Returns True for success, False for failure.

top
ReadBytesAsync (1)
function CkStream_ReadBytesAsync(objHandle: HCkStream): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadBytesENC
function CkStream_ReadBytesENC(objHandle: HCkStream;
    encoding: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkStream__readBytesENC(objHandle: HCkStream;
    encoding: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.56

The same as ReadBytes, except returns the received bytes in encoded string form. The encoding argument indicates the encoding, which can be "base64", "hex", or any of the multitude of encodings indicated in the link below.

Returns True for success, False for failure.

More Information and Examples
top
ReadBytesENCAsync (1)
function CkStream_ReadBytesENCAsync(objHandle: HCkStream;
    encoding: PWideChar): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadNBytes
function CkStream_ReadNBytes(objHandle: HCkStream;
    numBytes: Integer;
    outBytes: HCkByteData): wordbool; stdcall;
Introduced in version 9.5.0.56

Reads exactly numBytes bytes from the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive.

Returns True for success, False for failure.

top
ReadNBytesAsync (1)
function CkStream_ReadNBytesAsync(objHandle: HCkStream;
    numBytes: Integer): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadNBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadNBytesENC
function CkStream_ReadNBytesENC(objHandle: HCkStream;
    numBytes: Integer;
    encoding: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkStream__readNBytesENC(objHandle: HCkStream;
    numBytes: Integer;
    encoding: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.56

The same as ReadNBytes, except returns the received bytes in encoded string form. The encoding argument indicates the encoding, which can be "base64", "hex", or any of the multitude of encodings indicated in the link below.

Returns True for success, False for failure.

More Information and Examples
top
ReadNBytesENCAsync (1)
function CkStream_ReadNBytesENCAsync(objHandle: HCkStream;
    numBytes: Integer;
    encoding: PWideChar): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadNBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadSb
function CkStream_ReadSb(objHandle: HCkStream;
    sb: HCkStringBuilder): wordbool; stdcall;
Introduced in version 9.5.0.67

Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is appended to sb. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadSb.

Returns True for success, False for failure.

top
ReadSbAsync (1)
function CkStream_ReadSbAsync(objHandle: HCkStream;
    sb: HCkStringBuilder): HCkTask; stdcall;
Introduced in version 9.5.0.67

Creates an asynchronous task to call the ReadSb method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

More Information and Examples
top
ReadString
function CkStream_ReadString(objHandle: HCkStream;
    outStr: HCkString): wordbool; stdcall;
function CkStream__readString(objHandle: HCkStream): PWideChar; stdcall;
Introduced in version 9.5.0.56

Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.

Returns True for success, False for failure.

top
ReadStringAsync (1)
function CkStream_ReadStringAsync(objHandle: HCkStream): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadString method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadToCRLF
function CkStream_ReadToCRLF(objHandle: HCkStream;
    outStr: HCkString): wordbool; stdcall;
function CkStream__readToCRLF(objHandle: HCkStream): PWideChar; stdcall;
Introduced in version 9.5.0.56

Reads the stream until a CRLF is received. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.

Note: If the end-of-stream is reached prior to receiving the CRLF, then the remaining data is returned, and the ReadFailReason property will be set to 3 (to indicate end-of-file). This is the only case where as string would be returned that does not end with CRLF.

Returns True for success, False for failure.

top
ReadToCRLFAsync (1)
function CkStream_ReadToCRLFAsync(objHandle: HCkStream): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadToCRLF method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
ReadUntilMatch
function CkStream_ReadUntilMatch(objHandle: HCkStream;
    matchStr: PWideChar;
    outStr: HCkString): wordbool; stdcall;
function CkStream__readUntilMatch(objHandle: HCkStream;
    matchStr: PWideChar): PWideChar; stdcall;
Introduced in version 9.5.0.56

Reads the stream until the string indicated by matchStr is received. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.

Note: If the end-of-stream is reached prior to receiving the match string, then the remaining data is returned, and the ReadFailReason property will be set to 3 (to indicate end-of-file). This is the only case where as string would be returned that does not end with the desired match string.

Returns True for success, False for failure.

top
ReadUntilMatchAsync (1)
function CkStream_ReadUntilMatchAsync(objHandle: HCkStream;
    matchStr: PWideChar): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadUntilMatch method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
Reset
procedure CkStream_Reset(objHandle: HCkStream) stdcall;
Introduced in version 9.5.0.56

Resets the stream. If a source or sink is open, then it is closed. Properties such as EndOfStream and IsWriteClose are reset to default values.

top
RunStream
function CkStream_RunStream(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

Runs the stream to completion. This method should only be called when the source of the string has been set by any of the following methods: SetSourceBytes, SetSourceString, or SetSourceStream, or when the SourceFile property has been set (giving the stream a file source).

This method will read the stream source and forward to the sink until the end-of-stream is reached, and all data has been written to the sink.

Returns True for success, False for failure.

More Information and Examples
top
RunStreamAsync (1)
function CkStream_RunStreamAsync(objHandle: HCkStream): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the RunStream method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
SetSinkStream
function CkStream_SetSinkStream(objHandle: HCkStream;
    strm: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

Sets the stream's sink to strm. Any data written to this stream's sink will become available to strm on its source.

Returns True for success, False for failure.

top
SetSourceBytes
function CkStream_SetSourceBytes(objHandle: HCkStream;
    sourceData: HCkByteData): wordbool; stdcall;
Introduced in version 9.5.0.56

Sets the stream's source to the contents of sourceData.

Returns True for success, False for failure.

top
SetSourceStream
function CkStream_SetSourceStream(objHandle: HCkStream;
    strm: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

Sets the stream's source to be the sink of strm. Any data written to strm's sink will become available on this stream's source.

Returns True for success, False for failure.

More Information and Examples
top
SetSourceString
function CkStream_SetSourceString(objHandle: HCkStream;
    srcStr: PWideChar;
    charset: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.56

Sets the stream's source to the contents of srcStr. The charset indicates the character encoding to be used for the byte representation of the srcStr.

Returns True for success, False for failure.

top
WriteBd
function CkStream_WriteBd(objHandle: HCkStream;
    binData: HCkBinData): wordbool; stdcall;
Introduced in version 9.5.0.67

Writes the contents of binData to the stream.

Returns True for success, False for failure.

top
WriteBdAsync (1)
function CkStream_WriteBdAsync(objHandle: HCkStream;
    binData: HCkBinData): HCkTask; stdcall;
Introduced in version 9.5.0.67

Creates an asynchronous task to call the WriteBd method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
WriteByte
function CkStream_WriteByte(objHandle: HCkStream;
    byteVal: Integer): wordbool; stdcall;
Introduced in version 9.5.0.56

Writes a single byte to the stream. The byteVal must have a value from 0 to 255.

Returns True for success, False for failure.

top
WriteByteAsync (1)
function CkStream_WriteByteAsync(objHandle: HCkStream;
    byteVal: Integer): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteByte method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
WriteBytes
function CkStream_WriteBytes(objHandle: HCkStream;
    byteData: HCkByteData): wordbool; stdcall;
Introduced in version 9.5.0.56

Writes binary bytes to a stream.

Returns True for success, False for failure.

top
WriteBytesAsync (1)
function CkStream_WriteBytesAsync(objHandle: HCkStream;
    byteData: HCkByteData): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
WriteBytes2
function CkStream_WriteBytes2(objHandle: HCkStream;
    pByteData: pbyte;
    szByteData: LongWord): wordbool; stdcall;
Introduced in version 9.5.0.82

Writes binary bytes to a stream.

Returns True for success, False for failure.

top
WriteBytesENC
function CkStream_WriteBytesENC(objHandle: HCkStream;
    byteData: PWideChar;
    encoding: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.56

Writes binary bytes to a stream. The byte data is passed in encoded string form, where the encoding can be "base64", "hex", or any of the supported binary encodings listed at the link below.

Returns True for success, False for failure.

More Information and Examples
top
WriteBytesENCAsync (1)
function CkStream_WriteBytesENCAsync(objHandle: HCkStream;
    byteData: PWideChar;
    encoding: PWideChar): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
WriteClose
function CkStream_WriteClose(objHandle: HCkStream): wordbool; stdcall;
Introduced in version 9.5.0.56

Indicates that no more data will be written to the stream.

Returns True for success, False for failure.

top
WriteSb
function CkStream_WriteSb(objHandle: HCkStream;
    sb: HCkStringBuilder): wordbool; stdcall;
Introduced in version 9.5.0.67

Writes the contents of sb to the stream. The actual bytes written are the byte representation of the string as indicated by the StringCharset property. For example, to write utf-8 bytes, first set StringCharset equal to "utf-8" and then call WriteSb.

Returns True for success, False for failure.

top
WriteSbAsync (1)
function CkStream_WriteSbAsync(objHandle: HCkStream;
    sb: HCkStringBuilder): HCkTask; stdcall;
Introduced in version 9.5.0.67

Creates an asynchronous task to call the WriteSb method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top
WriteString
function CkStream_WriteString(objHandle: HCkStream;
    str: PWideChar): wordbool; stdcall;
Introduced in version 9.5.0.56

Writes a string to a stream. The actual bytes written are the byte representation of the string as indicated by the StringCharset property. For example, to write utf-8 bytes, first set StringCharset equal to "utf-8" and then call WriteString.

Returns True for success, False for failure.

top
WriteStringAsync (1)
function CkStream_WriteStringAsync(objHandle: HCkStream;
    str: PWideChar): HCkTask; stdcall;
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteString method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Returns nil on failure

top

Events

Chilkat supports event callbacks for the Delphi DLL starting in version 9.5.0.82.

AbortCheck
function MyAbortCheck(): Integer; cdecl;
Introduced in version 9.5.0.82

Provides the opportunity for a method call to be aborted. The AbortCheck event is fired periodically based on the value of the HeartbeatMs property. If HeartbeatMs is 0, then no AbortCheck events will fire. As an example, to fire 5 AbortCheck events per second, set the HeartbeatMs property equal to 200. Return True to abort; return False to continue (not abort)

More Information and Examples
top
PercentDone
function MyPercentDone(pctDone: Integer): Integer; cdecl;
Introduced in version 9.5.0.82

Provides the percentage completed for any method that involves network communications or time-consuming processing (assuming it is a method where a percentage completion can be measured). This event is only fired when it is possible to know a percentage completion, and when it makes sense to express the operation as a percentage completed. The pctDone argument will have a value from 1 to 100. For operations (Chilkat method calls) that complete very quickly, the number of PercentDone callbacks will vary, but the final callback should have a value of 100. For long running operations, no more than one callback per percentage point will occur (for example: 1, 2, 3, ... 98, 99, 100).

The PercentDone callback counts as an AbortCheck event. For method calls that complete quickly such that PercentDone events fire, it may be that AbortCheck events don't fire because the opportunity to abort is already provided in the PercentDone callback. For time consuming operations, where the amount of time between PercentDone callbacks are long, AbortCheck callbacks may be used to allow for the operation to be aborted in a more responsive manner.

Return True to abort; return False to continue (not abort)

More Information and Examples
top
ProgressInfo
procedure MyProgressInfo(name: PWideChar; value: PWideChar) cdecl;
Introduced in version 9.5.0.82

A general name/value event that provides information about what is happening during a method call. To find out what information is available, write code to handle this event and log the name/value pairs. Most are self-explanatory.

More Information and Examples
top
TaskCompleted
procedure MyTaskCompleted(task: HCkTask) cdecl;
Introduced in version 9.5.0.82

Called in the background thread when an asynchronous task completes.

top