persistent class Ens.Util.IOLog
extends %Persistent, Ens.Util.BitmapPurge
A header class that records raw Adapter Inputs and Outputs
parameter DOMAIN = "Ensemble";
property AdapterClass
as %String(MAXLEN=128,TRUNCATE=1);
property Annotation
as %String(MAXLEN=1200,TRUNCATE=1);
property ConfigName
as %String(MAXLEN=128,TRUNCATE=1);
property CorrespondingRequestId
as %Integer;
The %Id() of the corresponding request
property HostClass
as %String(MAXLEN=128,TRUNCATE=1);
property InObject
as %RegisteredObject;
property InObjectClass
as %String(MAXLEN=128,TRUNCATE=1);
property IsInbound
as %Boolean;
property Job
as %String(TRUNCATE=1);
property OutObject
as %RegisteredObject;
property OutObjectClass
as %String(MAXLEN=128,TRUNCATE=1);
property SessionId
as %Integer;
property SourceMethod
as %String(MAXLEN=40,TRUNCATE=1);
property Status
as %Status [ InitialExpression = $$$OK ];
this property contains the error status if any
property TimeReceived
as Ens.DataType.UTC;
property TimeResponded
as Ens.DataType.UTC;
index (ConfigName on ConfigName) [Type = bitmap];
index (Extent on ) [Extent,Type = bitmap];
index (SessionId on SessionId);
index (TimeReceived on TimeReceived);