Skip to main content

%SYSTEM.Context.SN

class %SYSTEM.Context.SN extends %Library.RegisteredObject

Context for Shared Nothing (aka Sharding)

Property Inventory

Method Inventory

Properties

property ECPConnections [ MultiDimensional ];
Property methods: ECPConnectionsDisplayToLogical(), ECPConnectionsGet(), ECPConnectionsIsValid(), ECPConnectionsLogicalToDisplay(), ECPConnectionsLogicalToOdbc(), ECPConnectionsNormalize(), ECPConnectionsSet()
property com as %BigData.Messaging;
Property methods: comGet(), comGetSwizzled(), comIsValid(), comNewObject(), comSet()
property commandsExecuted as %Integer;
Property methods: commandsExecutedDisplayToLogical(), commandsExecutedGet(), commandsExecutedIsValid(), commandsExecutedLogicalToDisplay(), commandsExecutedNormalize(), commandsExecutedSet()
property connectionSequence as %Integer;
Property methods: connectionSequenceDisplayToLogical(), connectionSequenceGet(), connectionSequenceIsValid(), connectionSequenceLogicalToDisplay(), connectionSequenceNormalize(), connectionSequenceSet()
property defaultPort as %Integer;
Property methods: defaultPortDisplayToLogical(), defaultPortGet(), defaultPortIsValid(), defaultPortLogicalToDisplay(), defaultPortNormalize(), defaultPortSet()
property deviceNumber as %Integer [ MultiDimensional ];
Property methods: deviceNumberDisplayToLogical(), deviceNumberGet(), deviceNumberIsValid(), deviceNumberLogicalToDisplay(), deviceNumberNormalize(), deviceNumberSet()
property diskReadMilliseconds as %Integer;
Property methods: diskReadMillisecondsDisplayToLogical(), diskReadMillisecondsGet(), diskReadMillisecondsIsValid(), diskReadMillisecondsLogicalToDisplay(), diskReadMillisecondsNormalize(), diskReadMillisecondsSet()
property globalReferences as %Integer;
Property methods: globalReferencesDisplayToLogical(), globalReferencesGet(), globalReferencesIsValid(), globalReferencesLogicalToDisplay(), globalReferencesNormalize(), globalReferencesSet()
property groupId as %String;
Property methods: groupIdDisplayToLogical(), groupIdGet(), groupIdIsValid(), groupIdLogicalToDisplay(), groupIdLogicalToOdbc(), groupIdNormalize(), groupIdSet()
property messagingType as %String;
Property methods: messagingTypeDisplayToLogical(), messagingTypeGet(), messagingTypeIsValid(), messagingTypeLogicalToDisplay(), messagingTypeLogicalToOdbc(), messagingTypeNormalize(), messagingTypeSet()
property openQueryCount as %Integer;
Property methods: openQueryCountDisplayToLogical(), openQueryCountGet(), openQueryCountIsValid(), openQueryCountLogicalToDisplay(), openQueryCountNormalize(), openQueryCountSet()
property queryIdSequence as %Integer;
Property methods: queryIdSequenceDisplayToLogical(), queryIdSequenceGet(), queryIdSequenceIsValid(), queryIdSequenceLogicalToDisplay(), queryIdSequenceNormalize(), queryIdSequenceSet()
property querySem1Name as %String;
Property methods: querySem1NameDisplayToLogical(), querySem1NameGet(), querySem1NameIsValid(), querySem1NameLogicalToDisplay(), querySem1NameLogicalToOdbc(), querySem1NameNormalize(), querySem1NameSet()
property querySemaphore1 as %SYSTEM.Semaphore;
Property methods: querySemaphore1Get(), querySemaphore1GetObject(), querySemaphore1GetObjectId(), querySemaphore1GetSwizzled(), querySemaphore1IsValid(), querySemaphore1NewObject(), querySemaphore1Set(), querySemaphore1SetObject(), querySemaphore1SetObjectId(), querySemaphore1UnSwizzle()
property queryShardMapVersions [ MultiDimensional ];
Property methods: queryShardMapVersionsDisplayToLogical(), queryShardMapVersionsGet(), queryShardMapVersionsIsValid(), queryShardMapVersionsLogicalToDisplay(), queryShardMapVersionsLogicalToOdbc(), queryShardMapVersionsNormalize(), queryShardMapVersionsSet()
property querySqms [ MultiDimensional ];
ShardWorkMgr object used for queries (subscripted by query id)
Property methods: querySqmsDisplayToLogical(), querySqmsGet(), querySqmsIsValid(), querySqmsLogicalToDisplay(), querySqmsLogicalToOdbc(), querySqmsNormalize(), querySqmsSet()
property resolvedHostnames [ MultiDimensional ];
Property methods: resolvedHostnamesDisplayToLogical(), resolvedHostnamesGet(), resolvedHostnamesIsValid(), resolvedHostnamesLogicalToDisplay(), resolvedHostnamesLogicalToOdbc(), resolvedHostnamesNormalize(), resolvedHostnamesSet()
property semaphores [ MultiDimensional ];
Property methods: semaphoresDisplayToLogical(), semaphoresGet(), semaphoresIsValid(), semaphoresLogicalToDisplay(), semaphoresLogicalToOdbc(), semaphoresNormalize(), semaphoresSet()
property shardServerJobs [ MultiDimensional ];
Property methods: shardServerJobsDisplayToLogical(), shardServerJobsGet(), shardServerJobsIsValid(), shardServerJobsLogicalToDisplay(), shardServerJobsLogicalToOdbc(), shardServerJobsNormalize(), shardServerJobsSet()
property shardingManager as %BigData.ShardingManager;
Property methods: shardingManagerGet(), shardingManagerGetSwizzled(), shardingManagerIsValid(), shardingManagerNewObject(), shardingManagerSet()
property tempFileOffsets [ MultiDimensional ];
Property methods: tempFileOffsetsDisplayToLogical(), tempFileOffsetsGet(), tempFileOffsetsIsValid(), tempFileOffsetsLogicalToDisplay(), tempFileOffsetsLogicalToOdbc(), tempFileOffsetsNormalize(), tempFileOffsetsSet()
property tempfilePool [ MultiDimensional ];
Property methods: tempfilePoolDisplayToLogical(), tempfilePoolGet(), tempfilePoolIsValid(), tempfilePoolLogicalToDisplay(), tempfilePoolLogicalToOdbc(), tempfilePoolNormalize(), tempfilePoolSet()

Methods

method %OnNew() as %Library.Status
Inherited description: This callback method is invoked by the %New() method to provide notification that a new instance of an object is being created.

If this method returns an error then the object will not be created.

It is passed the arguments provided in the %New call. When customizing this method, override the arguments with whatever variables and types you expect to receive from %New(). For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:

Method %OnNew(dob as %Date = "", name as %Name = "") as %Status If instead of returning a %Status code this returns an oref and this oref is a subclass of the current class then this oref will be the one returned to the caller of %New method.

Inherited Members

Inherited Methods

FeedbackOpens in a new tab