Difference between revisions of "Midware TServerObject.FORBDataPtr"

From Overbyte
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
== Definition ==
 
== Definition ==
 
'''protected''' FORBDataPtr: '''PORBData''';
 
 
== Description ==
 
---type---
 
 
 
<syntaxhighlight lang="delphi">
 
<syntaxhighlight lang="delphi">
    TORBData = record
+
type
 +
  TORBData = record
 
         SendResp  : TSendResponseToClient;
 
         SendResp  : TSendResponseToClient;
 
         Tag      : TObject;            // CliWSocket
 
         Tag      : TObject;            // CliWSocket
Line 18: Line 13:
 
     PORBData = ^TORBData;
 
     PORBData = ^TORBData;
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
 +
'''protected''' FORBDataPtr: '''PORBData''';
 +
 +
== Description ==
  
 
FORBDataPtr is a pointer to data allocated by the ORB.
 
FORBDataPtr is a pointer to data allocated by the ORB.

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.