Difference between revisions of "Midware TServerObject.FORBDataPtr"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
== Definition == | == Definition == | ||
+ | <syntaxhighlight lang="delphi"> | ||
+ | type | ||
+ | TORBData = record | ||
+ | SendResp : TSendResponseToClient; | ||
+ | Tag : TObject; // CliWSocket | ||
+ | Item : Integer; | ||
+ | ORB : TRequestBroker; // RequestBroker | ||
+ | AppServer : TObject; // AppServer | ||
+ | end; | ||
+ | PORBData = ^TORBData; | ||
+ | </syntaxhighlight> | ||
+ | |||
'''protected''' FORBDataPtr: '''PORBData'''; | '''protected''' FORBDataPtr: '''PORBData'''; |
Latest revision as of 13:02, 24 May 2011
Main page -> Midware component reference -> TServerObject -> FORBDataPtr
Definition
<syntaxhighlight lang="delphi"> type
TORBData = record SendResp : TSendResponseToClient; Tag : TObject; // CliWSocket Item : Integer; ORB : TRequestBroker; // RequestBroker AppServer : TObject; // AppServer end; PORBData = ^TORBData;
</syntaxhighlight>
protected FORBDataPtr: PORBData;
Description
FORBDataPtr is a pointer to data allocated by the ORB.