Difference between revisions of "Midware TClientWSocket.OnOverflow"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TClientWSocket -> [[Midware_TClientWSocket.OnOverflow | …') |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TOverflowEvent = procedure (Sender : TObject; var CanAbort : Boolean) of object; | ||
+ | |||
+ | property OnOverflow : TOverflowEvent; | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == | ||
Triggered when the input buffer is overflowed and can't be enlarged. Default action is to abort the connection. Overflow may occurs when the is no more memory available. | Triggered when the input buffer is overflowed and can't be enlarged. Default action is to abort the connection. Overflow may occurs when the is no more memory available. | ||
− | |||
− |
Latest revision as of 14:26, 14 May 2011
Main page -> Midware component reference -> TClientWSocket -> OnOverflow
Definition
<syntaxhighlight lang="delphi"> type TOverflowEvent = procedure (Sender : TObject; var CanAbort : Boolean) of object;
property OnOverflow : TOverflowEvent; </syntaxhighlight>
Description
Triggered when the input buffer is overflowed and can't be enlarged. Default action is to abort the connection. Overflow may occurs when the is no more memory available.