Difference between revisions of "Midware TServerObject.FORBDataPtr"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TServerObject -> [[Midware_TServerObject.FORBDataPtr | FO…') |
|||
Line 6: | Line 6: | ||
== Description == | == Description == | ||
+ | ---type--- | ||
+ | |||
+ | <syntaxhighlight lang="delphi"> | ||
+ | TORBData = record | ||
+ | SendResp : TSendResponseToClient; | ||
+ | Tag : TObject; // CliWSocket | ||
+ | Item : Integer; | ||
+ | ORB : TRequestBroker; // RequestBroker | ||
+ | AppServer : TObject; // AppServer | ||
+ | end; | ||
+ | PORBData = ^TORBData; | ||
+ | </syntaxhighlight> | ||
FORBDataPtr is a pointer to data allocated by the ORB. | FORBDataPtr is a pointer to data allocated by the ORB. |
Revision as of 08:52, 9 May 2011
Main page -> Midware component reference -> TServerObject -> FORBDataPtr
Definition
protected FORBDataPtr: PORBData;
Description
---type---
<syntaxhighlight lang="delphi">
TORBData = record SendResp : TSendResponseToClient; Tag : TObject; // CliWSocket Item : Integer; ORB : TRequestBroker; // RequestBroker AppServer : TObject; // AppServer end; PORBData = ^TORBData;
</syntaxhighlight>
FORBDataPtr is a pointer to data allocated by the ORB.