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 | …') |
|||
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 == |
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.
Occurs when the input buffer is overflowed and can't be enlarged.