Difference between revisions of "Midware TServerObject.FORBDataPtr"

From Overbyte
Jump to navigation Jump to search
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:54, 9 May 2011

Main page -> Midware component reference -> TServerObject -> FORBDataPtr

Definition

protected FORBDataPtr: PORBData;

Description

FORBDataPtr is a pointer to data allocated by the ORB.