├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images ├── New-SMO-Class.png ├── New-SMO-Editor.png ├── New-SMO.png ├── SMO-Editor.png ├── SMO-Example-FP.png ├── SMO-Usage.png ├── Screen Shot 2016-07-14 at 10.22.55 AM.png ├── TestLauncher-VI.png ├── smo_logo.png └── state-machine-objects-diagram.png ├── src ├── Definitions │ └── def.SMO │ │ ├── Scope -- Enum.ctl │ │ └── def.SMO.lvclass ├── Dependency │ ├── Declare Dependency.vi │ ├── Dependency.lvclass │ ├── Read Instance.vi │ ├── Read Level.vi │ ├── Read Name.vi │ ├── Read Owner GUID.vi │ ├── Read Self GUID.vi │ ├── Read Shared Resource.vi │ ├── Read Start Order.vi │ ├── Write Instance.vi │ ├── Write Level.vi │ ├── Write Name.vi │ ├── Write Owner GUID.vi │ ├── Write Self GUID.vi │ ├── Write Shared Resource.vi │ └── Write Start Order.vi ├── JKI SMO.lvproj ├── JKI State Machine Objects.vipb ├── JKI State Machine Objects.vipc ├── Registry │ ├── Compute Registry Key.vi │ ├── Destroy System Ref.vi │ ├── Discover API.vi │ ├── Get Public Registry Events.vi │ ├── Get Subsystem by Name.vi │ ├── GetRegistrySecretKey.vi │ ├── List Shared Resources.vi │ ├── List Subsystems.vi │ ├── Obtain System Ref.vi │ ├── PublicMethod Filter.vi │ ├── PublicRegistryEvents--Cluster.ctl │ ├── Register Subsystem.vi │ ├── Registry-SMO.lvclass │ ├── SMO_API--Cluster.ctl │ ├── SMO_Info--Cluster.ctl │ ├── Unregister Subsystem.vi │ ├── Update Subsystem.vi │ └── ValidateCharacters.vi ├── SMO.UI │ ├── CreatePrivateEvents.vi │ ├── CreatePublicEvents.vi │ ├── CreateSelfReference.vi │ ├── DestroyPrivateEvents.vi │ ├── DestroyPublicEvents.vi │ ├── DestroySelfReference.vi │ ├── Get VI Reference.vi │ ├── Hide.vi │ ├── NotifyUIHidden.vi │ ├── NotifyUIState.vi │ ├── Process.vi │ ├── SMO.UI.DVRtoRef.vi │ ├── SMO.UI.GetPrivateEvents.vi │ ├── SMO.UI.GetPublicEvents.vi │ ├── SMO.UI.GetPublicEventsRegistration.vi │ ├── SMO.UI.ReftoDVR.vi │ ├── SMO.UI.TestLauncher.vi │ ├── SMO.UI.lvclass │ ├── Show User Interface.vi │ ├── Show.vi │ └── Typedefs │ │ ├── PrivateData--Cluster.ctl │ │ ├── PrivateData--Ref.ctl │ │ ├── PrivateEvents--Cluster.ctl │ │ ├── PublicEvents--Cluster.ctl │ │ └── SMO.UI State--enum.ctl ├── SMO │ ├── CheckAccessibility.vi │ ├── Create.vi │ ├── Destroy.vi │ ├── Get GUID.vi │ ├── Get Name.vi │ ├── Get PublicEventRegistration.vi │ ├── Get Qualified Name.vi │ ├── Get State.vi │ ├── GetGUID.vi │ ├── GetName.vi │ ├── GetPublicEvents.vi │ ├── GetQualifiedName.vi │ ├── GetReserveState.vi │ ├── GetState.vi │ ├── LaunchDependency.vi │ ├── ListSharedResources.vi │ ├── Private │ │ ├── Abort.vi │ │ ├── Add Registered Process.vi │ │ ├── AddAttribute.vi │ │ ├── AddDependency.vi │ │ ├── Catch Process Error.vi │ │ ├── CleanDependencies.vi │ │ ├── Clear Registered Process.vi │ │ ├── ClearDependencies.vi │ │ ├── Create CallerWatchdog Queue.vi │ │ ├── Create Events.vi │ │ ├── Create Process Event Registration.vi │ │ ├── DVRtoRef--SMO.vi │ │ ├── Declare Dependency.vi │ │ ├── Destroy Events.vi │ │ ├── Ensure Dependencies Created.vi │ │ ├── Ensure Dependencies Started.vi │ │ ├── Generate ReserveState ChangeEvent.vi │ │ ├── Get Accessibility.vi │ │ ├── Get CallerWatchdog Queue.vi │ │ ├── Get Process Event Registration.vi │ │ ├── Get RegistryKey.vi │ │ ├── Get SecretKey.vi │ │ ├── GetCallingProcessCloneName.vi │ │ ├── GetDependencies.vi │ │ ├── GetErrorBehavior.vi │ │ ├── GetIdentity.vi │ │ ├── GetIdentityAttr.vi │ │ ├── GetLineage.vi │ │ ├── GetOwner.vi │ │ ├── GetStaticDepNumber.vi │ │ ├── GetSyncNotifier.vi │ │ ├── GetVariant(Attr).vi │ │ ├── LaunchProcess.vi │ │ ├── List All Valid Notifiers.vi │ │ ├── ListAttributes.vi │ │ ├── LoadPreStartAttributes.vi │ │ ├── NotifyOwner(Message).vi │ │ ├── NotifyOwner(SelfTermination).vi │ │ ├── ReadStartupBehavior.vi │ │ ├── ReftoDVR--SMO.vi │ │ ├── Request Ownership.vi │ │ ├── SMO.LaunchDependency.vi │ │ ├── SMO.StartDependencies.vi │ │ ├── SMO.StopDependencies.vi │ │ ├── Send StopProcessedEvent.vi │ │ ├── Set Process Event Registration.vi │ │ ├── SetParentCall.vi │ │ ├── SetSMOState.vi │ │ ├── SetStaticDepNumber.vi │ │ ├── SetSyncNotifier.vi │ │ ├── SetVariant(Attr).vi │ │ ├── StartProcesses.vi │ │ ├── StopProcesses.vi │ │ ├── UpdateAttribute.vi │ │ ├── UpdateDependencyAttr.vi │ │ ├── ValidateOwner.vi │ │ ├── WaitForAsyncReturnData.vi │ │ ├── WaitForLauchCloseSync.vi │ │ ├── cleanupSelfTerminate.vi │ │ ├── isParentCalled.vi │ │ ├── isSharedResource.vi │ │ ├── objectCreationSequence.vi │ │ └── prepareSelfTerminate.vi │ ├── Process.vi │ ├── Protected │ │ ├── CreatePrivateEvents.vi │ │ ├── CreateProtectedEvents.vi │ │ ├── CreatePublicEvents.vi │ │ ├── CreateSelfReference.vi │ │ ├── DestroyPrivateEvents.vi │ │ ├── DestroyProtectedEvents.vi │ │ ├── DestroyPublicEvents.vi │ │ ├── DestroySelfReference.vi │ │ ├── FindDependency(byKey).vi │ │ ├── Get Dependency State Events.vi │ │ ├── GetAttributeByName.vi │ │ ├── GetDefaultConfigurationPath.vi │ │ ├── GetProcessInstanceRef.vi │ │ ├── GetProcessNotifierFromRef.vi │ │ ├── GetProtectedEvents.vi │ │ ├── Handle Error.vi │ │ ├── List Processes.vi │ │ ├── ListDependencies.vi │ │ ├── ListPublicAttributes.vi │ │ ├── ListThisLevelDependencies.vi │ │ ├── Read Process Kill timeout.vi │ │ ├── Register Process (Default).vi │ │ ├── Register Process.vi │ │ ├── SelfTerminate.vi │ │ ├── SetAttributeByName.vi │ │ ├── Stop Dependency.vi │ │ ├── ThisLevelClassName.vi │ │ ├── WaitOnFinalProcessSync.vi │ │ ├── WaitOnProcessSync.vi │ │ ├── enumerateStaticDependencies.vi │ │ ├── hasAttributeByType.vi │ │ ├── isProcessAllowedRun.vi │ │ ├── onCreate.vi │ │ ├── onCreated.vi │ │ ├── onDependencyAttributeChanged.vi │ │ ├── onDependencyConfigChanged.vi │ │ ├── onDependencyMessage.vi │ │ ├── onDependencyStarted.vi │ │ ├── onDependencyStopped.vi │ │ ├── onDestroy.vi │ │ ├── onDestroyed.vi │ │ ├── onOwnershipChanged.vi │ │ ├── onProcessKill.vi │ │ ├── onProcessKilled.vi │ │ ├── onProcessStart.vi │ │ ├── onProcessStarted.vi │ │ ├── onProcessStartedWithErrors.vi │ │ ├── onProcessStop.vi │ │ ├── onProcessStopped.vi │ │ ├── onSelfStop.vi │ │ ├── onStart.vi │ │ ├── onStarted.vi │ │ ├── onStaticDependenciesStart.vi │ │ ├── onStaticDependenciesStarted.vi │ │ ├── onStop.vi │ │ ├── onStopped.vi │ │ └── onUnhandledDependencyError.vi │ ├── ReserveDependency.vi │ ├── SMO Activity Tree.vi │ ├── SMO Base Test Launcher.vi │ ├── SMO.lvclass │ ├── Set Process Kill timeout.vi │ ├── Start.vi │ ├── Stop.vi │ ├── Typedefs │ │ ├── AbortProcessEventData--Cluster.ctl │ │ ├── Accessibility--Cluster.ctl │ │ ├── Parent Call--Enum.ctl │ │ ├── PrivateData--Cluster.ctl │ │ ├── PrivateData--Ref.ctl │ │ ├── Process Error Notification--Cluster.ctl │ │ ├── ProcessRegistrationRefnum.ctl │ │ ├── Protected Events.ctl │ │ ├── Public Events.ctl │ │ ├── RegisteredProcessData--Cluster.ctl │ │ ├── Reserve State--Enum.ctl │ │ ├── Reserved(Self)--Cluster.ctl │ │ ├── SMO Dependency Event--Cluster.ctl │ │ ├── SMO Dependency Event--Enum.ctl │ │ ├── SMO Dependency--Cluster.ctl │ │ ├── SMOState --Enum.ctl │ │ ├── Search Key.ctl │ │ └── StopProcessEventData--Cluster.ctl │ ├── UnReserveDependency.vi │ ├── WaitForState.vi │ ├── WaitForStateChange.vi │ ├── is StateMachineObject.vi │ ├── isStateMachineObject.vi │ ├── reuse │ │ ├── CastArrayDependenciesToClusterOrClass.vi │ │ ├── CastDependenciesClusterToArray.vi │ │ └── application control │ │ │ └── Wait on VI Idle.vi │ └── setErrorHandlingBehavior.vi ├── SMOFacade │ ├── Facade │ │ ├── Arguments to Array of Variants.vi │ │ ├── Call.vi │ │ ├── Clean Facade.vi │ │ ├── Create Facade (byClass).vi │ │ ├── Create Facade (byURL).vi │ │ ├── Define PublicEvents Type.vi │ │ ├── Get Component Type.vi │ │ ├── Get Method Prototype.vi │ │ ├── Get PublicEvents.vi │ │ ├── Get SMO State.vi │ │ ├── Get SMO.vi │ │ ├── List API.vi │ │ ├── List Components.vi │ │ ├── Prepare Inputs.vi │ │ ├── Read PublicEvents.vi │ │ ├── Retrieve Outputs.vi │ │ ├── Run.vi │ │ ├── SMOFacade.lvclass │ │ └── isFacadeConnected.vi │ ├── PublicEvents │ │ ├── Create PublicEvents.vi │ │ ├── Get SMO Base Events.vi │ │ ├── Init PublicEvents.vi │ │ └── PublicEvents.lvclass │ ├── Terminal │ │ ├── Control Definition -- Cluster.ctl │ │ ├── Get Caption.vi │ │ ├── Get ControlIndex.vi │ │ ├── Get DefaultValue.vi │ │ ├── Get Inputs Definition.vi │ │ ├── Get Outputs Definition.vi │ │ ├── New Terminal.vi │ │ ├── Sort Terminals.vi │ │ └── Terminal.lvclass │ └── Test SMO Facade.vi ├── Support │ ├── Attribute.Dependencies │ │ ├── Attribute.Dependencies.lvclass │ │ ├── DependencyAttr--Cluster.ctl │ │ ├── Get Dependency (by GUID).vi │ │ ├── Get GUIDs.vi │ │ ├── Initialize Dependencies Attribute.vi │ │ ├── List Dependencies.vi │ │ ├── Remove Dependency.vi │ │ └── Update Dependency.vi │ ├── Attribute.ErrorHandling │ │ ├── Attribute.ErrorHandling.lvclass │ │ ├── Initialize ErrorHandling Attribute.vi │ │ └── Read UnhandledShutdown.vi │ ├── Attribute.Identity │ │ ├── Attribute.Identity.lvclass │ │ ├── Initialize Identity Attribute.vi │ │ ├── Read GUID.vi │ │ ├── Read Given Name.vi │ │ ├── Read Name.vi │ │ ├── Read ProspectiveOwner.vi │ │ ├── Read RegistryKey.vi │ │ ├── Read SecretKey.vi │ │ ├── Read UniqueName.vi │ │ ├── Write RegistryKey.vi │ │ └── Write UniqueName.vi │ ├── Attribute.Owner │ │ ├── Attribute.Owner.lvclass │ │ ├── Compute Shared Key.vi │ │ ├── Initialize Owner Attribute.vi │ │ ├── Packet -- Cluster.ctl │ │ ├── Read Lineage.vi │ │ ├── Read Owner Event Ref.vi │ │ ├── Read Owner GUID.vi │ │ ├── Read Owner Name.vi │ │ ├── Read Shared Key.vi │ │ ├── Send Message to Owner.vi │ │ ├── UnInitialize Owner Attribute.vi │ │ ├── Verify Key Match.vi │ │ ├── Write Lineage.vi │ │ ├── Write Owner GUID.vi │ │ ├── Write Owner Name.vi │ │ └── Write Shared Key.vi │ ├── Attribute.SharedResource │ │ ├── Attribute.SharedResource.lvclass │ │ └── Initialize SharedRsc Attribute.vi │ ├── Attribute.StartupBehavior │ │ ├── Attribute.StartupBehavior.lvclass │ │ ├── Initialize StartupBehavior Attribute.vi │ │ ├── ProcessStartupBehavior.ctl │ │ └── Read Behavior.vi │ └── Attribute │ │ ├── Attribute.lvclass │ │ ├── Find Attribute Match.vi │ │ ├── Read AttrName.vi │ │ ├── Read Can be inherited.vi │ │ ├── Read Scope.vi │ │ ├── Search Attributes.vi │ │ ├── Write AttrName.vi │ │ ├── Write Can be inherited.vi │ │ ├── Write Scope.vi │ │ └── onAttributeOverwrite.vi ├── Templates │ ├── ProcessTemplate (JKI-SM).vi │ ├── ProcessTemplate (Minimal).vi │ └── ProcessTemplate (TimedLoop).vi ├── URI Parsing │ ├── Construct URI.vi │ ├── EscapeURI.vi │ ├── Parse URI.vi │ ├── URI.lvlib │ ├── UT--Construct URIs.vi │ ├── UT--Parse URIs.vi │ └── UnescapeURI.vi └── Utilities │ ├── ArrayToCluster.vi │ ├── ClusterToArray.vi │ ├── Extract Element Names.vi │ └── MatchInputs.vi └── tests ├── Example--SMO.Example.vi ├── JKI SMO Example.lvproj ├── JKI SMO Nested Dependencies Example.lvproj ├── SMO_Test.lvproj ├── SMO_Test.vipc ├── _test-cases ├── Run Test Suite.vi ├── Test-DynamicDependency.vi ├── Test-Reservation.vi ├── Test-SMObase.vi ├── aggregation-lifetime-management.vi ├── attributes-dependencies-test.vi ├── attributes-identity-test.vi ├── attributes-owner-test.vi ├── attributes-test.vi ├── basic-dependency-test.vi ├── basic-lifetime-test.vi ├── dependency-callerregistration-test.vi ├── dependency-listorder-test.vi ├── dynamic-dependency-stop-test.vi ├── large-object-count-parallel-test.vi ├── large-object-count-test.vi ├── list-shared-dependencies.vi ├── object-generation-speedtest.vi ├── process-sync-start-test.vi ├── registration-test.vi ├── shared-dependency-concurrency-test.vi ├── shared-dependency-declareself&takeowner-test.vi ├── shared-dependency-declareself-test.vi ├── shared-dependency-sequential-test.vi ├── shared-dependency-test.vi ├── unique-name-differnetowner-test.vi ├── unique-name-multiple-instances.vi └── unique-name-test.vi └── _test-support-SMOs ├── SMO.A ├── Process.vi ├── SMO.A.lvclass └── enumerateStaticDependencies.vi ├── SMO.DynamicLauncher ├── Process.vi ├── Read WaitStarted.vi ├── SMO.DynamicLauncher.lvclass ├── Write WaitStarted.vi └── enumerateStaticDependencies.vi ├── SMO.ErrorInjection ├── Create Error Injection Test SMO.vi ├── Handle Error.vi ├── Process.vi ├── SMO.ErrorInjection.TestLauncher.vi ├── SMO.ErrorInjection.lvclass ├── callback -- enum.ctl ├── checkForErrorInjected.vi ├── enumerateStaticDependencies.vi ├── onCreate.vi ├── onCreated.vi ├── onDependencyMessage.vi ├── onDependencyStarted.vi ├── onDependencyStopped.vi ├── onDestroy.vi ├── onDestroyed.vi ├── onOwnershipChanged.vi ├── onProcessKill.vi ├── onProcessKilled.vi ├── onProcessStart.vi ├── onProcessStarted.vi ├── onProcessStartedWithErrors.vi ├── onProcessStop.vi ├── onProcessStopped.vi ├── onStart.vi ├── onStarted.vi ├── onStop.vi ├── onStopped.vi └── onUnhandledDependencyError.vi ├── SMO.Example ├── Launch ExampleDependency.vi ├── Launch SelfTerminatingDependency.vi ├── Overrides │ ├── CreateProtectedEvents.vi │ ├── CreatePublicEvents.vi │ ├── CreateSelfReference.vi │ ├── DestroyProtectedEvents.vi │ ├── DestroyPublicEvents.vi │ ├── DestroySelfReference.vi │ └── onProcessKilled.vi ├── Private │ ├── SMO.Example.DVRtoRef.vi │ ├── SMO.Example.ReftoDVR.vi │ ├── SMO.Example.SetData.vi │ └── SMO.Example.SetState.vi ├── Process--SMO.Example.vi ├── Process.vi ├── SMO.Example.About.vi ├── SMO.Example.GetDependencies.vi ├── SMO.Example.GetProtectedEvents.vi ├── SMO.Example.GetPublicEvents.vi ├── SMO.Example.GetPublicEventsRegistration.vi ├── SMO.Example.SetConfiguration.vi ├── SMO.Example.SetPumpState.vi ├── SMO.Example.SetValveState.vi ├── SMO.Example.TestLauncher.vi ├── SMO.Example.VI Tree.vi ├── SMO.Example.lvclass ├── Stop ExampleDependency.vi ├── Typedefs │ ├── API Inputs--Cluster.ctl │ ├── Configuration--Cluster.ctl │ ├── DataChanged--EventData--Cluster.ctl │ ├── Dependencies--Cluster.ctl │ ├── PrivateData--Cluster.ctl │ ├── PrivateData--Ref.ctl │ ├── ProtectedEvents--Cluster.ctl │ ├── PublicEvents--Cluster.ctl │ ├── PumpState--Cluster.ctl │ └── ValveState--Cluster.ctl └── enumerateStaticDependencies.vi ├── SMO.SelfTerminating ├── Process.vi └── SMO.SelfTerminating.lvclass ├── SMO.SelfTerminatingOverride ├── Expose My Dependencies.vi ├── Process.vi ├── SMO.SelfTerminatingOverride.lvclass └── enumerateStaticDependencies.vi ├── SMO.TopLevel ├── Overrides │ ├── CreateProtectedEvents.vi │ ├── CreatePublicEvents.vi │ ├── CreateSelfReference.vi │ ├── DestroyProtectedEvents.vi │ ├── DestroyPublicEvents.vi │ └── DestroySelfReference.vi ├── Private │ ├── SMO.Example.DVRtoRef.vi │ ├── SMO.Example.ReftoDVR.vi │ └── SMO.Example.SetData.vi ├── Process.vi ├── SMO.Example.A.vi ├── SMO.Example.GetDependencies.vi ├── SMO.Example.GetProtectedEvents.vi ├── SMO.Example.GetPublicEvents.vi ├── SMO.Example.GetPublicEventsRegistration.vi ├── SMO.Example.ListStaticDependencies.vi ├── SMO.Example.SetConfiguration.vi ├── SMO.Example.SetPumpState.vi ├── SMO.Example.SetValveState.vi ├── SMO.TopLevel.TestLauncher.vi ├── SMO.TopLevel.lvclass ├── Typedefs │ ├── API Inputs--Cluster.ctl │ ├── Configuration--Cluster.ctl │ ├── DataChanged--EventData--Cluster.ctl │ ├── Dependencies--Cluster.ctl │ ├── PrivateData--Cluster.ctl │ ├── PrivateData--Ref.ctl │ ├── ProtectedEvents--Cluster.ctl │ ├── PublicEvents--Cluster.ctl │ ├── PumpState--Cluster.ctl │ └── ValveState--Cluster.ctl └── enumerateStaticDependencies.vi └── SMO.UI.Example ├── Process.vi ├── SMO.UI.Example.Get Dependencies.vi ├── SMO.UI.Example.SetDependencies.vi ├── SMO.UI.Example.TestLauncher.vi ├── SMO.UI.Example.lvclass ├── Show User Interface.vi └── Typedefs ├── Dependencies--Cluster.ctl └── PrivateData--Cluster.ctl /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/README.md -------------------------------------------------------------------------------- /images/New-SMO-Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/New-SMO-Class.png -------------------------------------------------------------------------------- /images/New-SMO-Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/New-SMO-Editor.png -------------------------------------------------------------------------------- /images/New-SMO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/New-SMO.png -------------------------------------------------------------------------------- /images/SMO-Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/SMO-Editor.png -------------------------------------------------------------------------------- /images/SMO-Example-FP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/SMO-Example-FP.png -------------------------------------------------------------------------------- /images/SMO-Usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/SMO-Usage.png -------------------------------------------------------------------------------- /images/Screen Shot 2016-07-14 at 10.22.55 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/Screen Shot 2016-07-14 at 10.22.55 AM.png -------------------------------------------------------------------------------- /images/TestLauncher-VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/TestLauncher-VI.png -------------------------------------------------------------------------------- /images/smo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/smo_logo.png -------------------------------------------------------------------------------- /images/state-machine-objects-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/images/state-machine-objects-diagram.png -------------------------------------------------------------------------------- /src/Definitions/def.SMO/Scope -- Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Definitions/def.SMO/Scope -- Enum.ctl -------------------------------------------------------------------------------- /src/Definitions/def.SMO/def.SMO.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Definitions/def.SMO/def.SMO.lvclass -------------------------------------------------------------------------------- /src/Dependency/Declare Dependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Declare Dependency.vi -------------------------------------------------------------------------------- /src/Dependency/Dependency.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Dependency.lvclass -------------------------------------------------------------------------------- /src/Dependency/Read Instance.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Instance.vi -------------------------------------------------------------------------------- /src/Dependency/Read Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Level.vi -------------------------------------------------------------------------------- /src/Dependency/Read Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Name.vi -------------------------------------------------------------------------------- /src/Dependency/Read Owner GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Owner GUID.vi -------------------------------------------------------------------------------- /src/Dependency/Read Self GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Self GUID.vi -------------------------------------------------------------------------------- /src/Dependency/Read Shared Resource.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Shared Resource.vi -------------------------------------------------------------------------------- /src/Dependency/Read Start Order.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Read Start Order.vi -------------------------------------------------------------------------------- /src/Dependency/Write Instance.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Instance.vi -------------------------------------------------------------------------------- /src/Dependency/Write Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Level.vi -------------------------------------------------------------------------------- /src/Dependency/Write Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Name.vi -------------------------------------------------------------------------------- /src/Dependency/Write Owner GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Owner GUID.vi -------------------------------------------------------------------------------- /src/Dependency/Write Self GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Self GUID.vi -------------------------------------------------------------------------------- /src/Dependency/Write Shared Resource.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Shared Resource.vi -------------------------------------------------------------------------------- /src/Dependency/Write Start Order.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Dependency/Write Start Order.vi -------------------------------------------------------------------------------- /src/JKI SMO.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/JKI SMO.lvproj -------------------------------------------------------------------------------- /src/JKI State Machine Objects.vipb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/JKI State Machine Objects.vipb -------------------------------------------------------------------------------- /src/JKI State Machine Objects.vipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/JKI State Machine Objects.vipc -------------------------------------------------------------------------------- /src/Registry/Compute Registry Key.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Compute Registry Key.vi -------------------------------------------------------------------------------- /src/Registry/Destroy System Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Destroy System Ref.vi -------------------------------------------------------------------------------- /src/Registry/Discover API.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Discover API.vi -------------------------------------------------------------------------------- /src/Registry/Get Public Registry Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Get Public Registry Events.vi -------------------------------------------------------------------------------- /src/Registry/Get Subsystem by Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Get Subsystem by Name.vi -------------------------------------------------------------------------------- /src/Registry/GetRegistrySecretKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/GetRegistrySecretKey.vi -------------------------------------------------------------------------------- /src/Registry/List Shared Resources.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/List Shared Resources.vi -------------------------------------------------------------------------------- /src/Registry/List Subsystems.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/List Subsystems.vi -------------------------------------------------------------------------------- /src/Registry/Obtain System Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Obtain System Ref.vi -------------------------------------------------------------------------------- /src/Registry/PublicMethod Filter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/PublicMethod Filter.vi -------------------------------------------------------------------------------- /src/Registry/PublicRegistryEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/PublicRegistryEvents--Cluster.ctl -------------------------------------------------------------------------------- /src/Registry/Register Subsystem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Register Subsystem.vi -------------------------------------------------------------------------------- /src/Registry/Registry-SMO.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Registry-SMO.lvclass -------------------------------------------------------------------------------- /src/Registry/SMO_API--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/SMO_API--Cluster.ctl -------------------------------------------------------------------------------- /src/Registry/SMO_Info--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/SMO_Info--Cluster.ctl -------------------------------------------------------------------------------- /src/Registry/Unregister Subsystem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Unregister Subsystem.vi -------------------------------------------------------------------------------- /src/Registry/Update Subsystem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/Update Subsystem.vi -------------------------------------------------------------------------------- /src/Registry/ValidateCharacters.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Registry/ValidateCharacters.vi -------------------------------------------------------------------------------- /src/SMO.UI/CreatePrivateEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/CreatePrivateEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/CreatePublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/CreatePublicEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/CreateSelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/CreateSelfReference.vi -------------------------------------------------------------------------------- /src/SMO.UI/DestroyPrivateEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/DestroyPrivateEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/DestroyPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/DestroyPublicEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/DestroySelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/DestroySelfReference.vi -------------------------------------------------------------------------------- /src/SMO.UI/Get VI Reference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Get VI Reference.vi -------------------------------------------------------------------------------- /src/SMO.UI/Hide.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Hide.vi -------------------------------------------------------------------------------- /src/SMO.UI/NotifyUIHidden.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/NotifyUIHidden.vi -------------------------------------------------------------------------------- /src/SMO.UI/NotifyUIState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/NotifyUIState.vi -------------------------------------------------------------------------------- /src/SMO.UI/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Process.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.DVRtoRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.DVRtoRef.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.GetPrivateEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.GetPrivateEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.GetPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.GetPublicEvents.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.GetPublicEventsRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.GetPublicEventsRegistration.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.ReftoDVR.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.ReftoDVR.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.TestLauncher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.TestLauncher.vi -------------------------------------------------------------------------------- /src/SMO.UI/SMO.UI.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/SMO.UI.lvclass -------------------------------------------------------------------------------- /src/SMO.UI/Show User Interface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Show User Interface.vi -------------------------------------------------------------------------------- /src/SMO.UI/Show.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Show.vi -------------------------------------------------------------------------------- /src/SMO.UI/Typedefs/PrivateData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Typedefs/PrivateData--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO.UI/Typedefs/PrivateData--Ref.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Typedefs/PrivateData--Ref.ctl -------------------------------------------------------------------------------- /src/SMO.UI/Typedefs/PrivateEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Typedefs/PrivateEvents--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO.UI/Typedefs/PublicEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Typedefs/PublicEvents--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO.UI/Typedefs/SMO.UI State--enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO.UI/Typedefs/SMO.UI State--enum.ctl -------------------------------------------------------------------------------- /src/SMO/CheckAccessibility.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/CheckAccessibility.vi -------------------------------------------------------------------------------- /src/SMO/Create.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Create.vi -------------------------------------------------------------------------------- /src/SMO/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Destroy.vi -------------------------------------------------------------------------------- /src/SMO/Get GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Get GUID.vi -------------------------------------------------------------------------------- /src/SMO/Get Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Get Name.vi -------------------------------------------------------------------------------- /src/SMO/Get PublicEventRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Get PublicEventRegistration.vi -------------------------------------------------------------------------------- /src/SMO/Get Qualified Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Get Qualified Name.vi -------------------------------------------------------------------------------- /src/SMO/Get State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Get State.vi -------------------------------------------------------------------------------- /src/SMO/GetGUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetGUID.vi -------------------------------------------------------------------------------- /src/SMO/GetName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetName.vi -------------------------------------------------------------------------------- /src/SMO/GetPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetPublicEvents.vi -------------------------------------------------------------------------------- /src/SMO/GetQualifiedName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetQualifiedName.vi -------------------------------------------------------------------------------- /src/SMO/GetReserveState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetReserveState.vi -------------------------------------------------------------------------------- /src/SMO/GetState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/GetState.vi -------------------------------------------------------------------------------- /src/SMO/LaunchDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/LaunchDependency.vi -------------------------------------------------------------------------------- /src/SMO/ListSharedResources.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/ListSharedResources.vi -------------------------------------------------------------------------------- /src/SMO/Private/Abort.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Abort.vi -------------------------------------------------------------------------------- /src/SMO/Private/Add Registered Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Add Registered Process.vi -------------------------------------------------------------------------------- /src/SMO/Private/AddAttribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/AddAttribute.vi -------------------------------------------------------------------------------- /src/SMO/Private/AddDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/AddDependency.vi -------------------------------------------------------------------------------- /src/SMO/Private/Catch Process Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Catch Process Error.vi -------------------------------------------------------------------------------- /src/SMO/Private/CleanDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/CleanDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Private/Clear Registered Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Clear Registered Process.vi -------------------------------------------------------------------------------- /src/SMO/Private/ClearDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/ClearDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Private/Create CallerWatchdog Queue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Create CallerWatchdog Queue.vi -------------------------------------------------------------------------------- /src/SMO/Private/Create Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Create Events.vi -------------------------------------------------------------------------------- /src/SMO/Private/Create Process Event Registration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Create Process Event Registration.vi -------------------------------------------------------------------------------- /src/SMO/Private/DVRtoRef--SMO.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/DVRtoRef--SMO.vi -------------------------------------------------------------------------------- /src/SMO/Private/Declare Dependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Declare Dependency.vi -------------------------------------------------------------------------------- /src/SMO/Private/Destroy Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Destroy Events.vi -------------------------------------------------------------------------------- /src/SMO/Private/Ensure Dependencies Created.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Ensure Dependencies Created.vi -------------------------------------------------------------------------------- /src/SMO/Private/Ensure Dependencies Started.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Ensure Dependencies Started.vi -------------------------------------------------------------------------------- /src/SMO/Private/Generate ReserveState ChangeEvent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Generate ReserveState ChangeEvent.vi -------------------------------------------------------------------------------- /src/SMO/Private/Get Accessibility.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Get Accessibility.vi -------------------------------------------------------------------------------- /src/SMO/Private/Get CallerWatchdog Queue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Get CallerWatchdog Queue.vi -------------------------------------------------------------------------------- /src/SMO/Private/Get Process Event Registration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Get Process Event Registration.vi -------------------------------------------------------------------------------- /src/SMO/Private/Get RegistryKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Get RegistryKey.vi -------------------------------------------------------------------------------- /src/SMO/Private/Get SecretKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Get SecretKey.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetCallingProcessCloneName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetCallingProcessCloneName.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetErrorBehavior.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetErrorBehavior.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetIdentity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetIdentity.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetIdentityAttr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetIdentityAttr.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetLineage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetLineage.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetOwner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetOwner.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetStaticDepNumber.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetStaticDepNumber.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetSyncNotifier.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetSyncNotifier.vi -------------------------------------------------------------------------------- /src/SMO/Private/GetVariant(Attr).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/GetVariant(Attr).vi -------------------------------------------------------------------------------- /src/SMO/Private/LaunchProcess.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/LaunchProcess.vi -------------------------------------------------------------------------------- /src/SMO/Private/List All Valid Notifiers.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/List All Valid Notifiers.vi -------------------------------------------------------------------------------- /src/SMO/Private/ListAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/ListAttributes.vi -------------------------------------------------------------------------------- /src/SMO/Private/LoadPreStartAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/LoadPreStartAttributes.vi -------------------------------------------------------------------------------- /src/SMO/Private/NotifyOwner(Message).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/NotifyOwner(Message).vi -------------------------------------------------------------------------------- /src/SMO/Private/NotifyOwner(SelfTermination).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/NotifyOwner(SelfTermination).vi -------------------------------------------------------------------------------- /src/SMO/Private/ReadStartupBehavior.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/ReadStartupBehavior.vi -------------------------------------------------------------------------------- /src/SMO/Private/ReftoDVR--SMO.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/ReftoDVR--SMO.vi -------------------------------------------------------------------------------- /src/SMO/Private/Request Ownership.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Request Ownership.vi -------------------------------------------------------------------------------- /src/SMO/Private/SMO.LaunchDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SMO.LaunchDependency.vi -------------------------------------------------------------------------------- /src/SMO/Private/SMO.StartDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SMO.StartDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Private/SMO.StopDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SMO.StopDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Private/Send StopProcessedEvent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Send StopProcessedEvent.vi -------------------------------------------------------------------------------- /src/SMO/Private/Set Process Event Registration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/Set Process Event Registration.vi -------------------------------------------------------------------------------- /src/SMO/Private/SetParentCall.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SetParentCall.vi -------------------------------------------------------------------------------- /src/SMO/Private/SetSMOState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SetSMOState.vi -------------------------------------------------------------------------------- /src/SMO/Private/SetStaticDepNumber.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SetStaticDepNumber.vi -------------------------------------------------------------------------------- /src/SMO/Private/SetSyncNotifier.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SetSyncNotifier.vi -------------------------------------------------------------------------------- /src/SMO/Private/SetVariant(Attr).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/SetVariant(Attr).vi -------------------------------------------------------------------------------- /src/SMO/Private/StartProcesses.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/StartProcesses.vi -------------------------------------------------------------------------------- /src/SMO/Private/StopProcesses.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/StopProcesses.vi -------------------------------------------------------------------------------- /src/SMO/Private/UpdateAttribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/UpdateAttribute.vi -------------------------------------------------------------------------------- /src/SMO/Private/UpdateDependencyAttr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/UpdateDependencyAttr.vi -------------------------------------------------------------------------------- /src/SMO/Private/ValidateOwner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/ValidateOwner.vi -------------------------------------------------------------------------------- /src/SMO/Private/WaitForAsyncReturnData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/WaitForAsyncReturnData.vi -------------------------------------------------------------------------------- /src/SMO/Private/WaitForLauchCloseSync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/WaitForLauchCloseSync.vi -------------------------------------------------------------------------------- /src/SMO/Private/cleanupSelfTerminate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/cleanupSelfTerminate.vi -------------------------------------------------------------------------------- /src/SMO/Private/isParentCalled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/isParentCalled.vi -------------------------------------------------------------------------------- /src/SMO/Private/isSharedResource.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/isSharedResource.vi -------------------------------------------------------------------------------- /src/SMO/Private/objectCreationSequence.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/objectCreationSequence.vi -------------------------------------------------------------------------------- /src/SMO/Private/prepareSelfTerminate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Private/prepareSelfTerminate.vi -------------------------------------------------------------------------------- /src/SMO/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Process.vi -------------------------------------------------------------------------------- /src/SMO/Protected/CreatePrivateEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/CreatePrivateEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/CreateProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/CreateProtectedEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/CreatePublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/CreatePublicEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/CreateSelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/CreateSelfReference.vi -------------------------------------------------------------------------------- /src/SMO/Protected/DestroyPrivateEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/DestroyPrivateEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/DestroyProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/DestroyProtectedEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/DestroyPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/DestroyPublicEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/DestroySelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/DestroySelfReference.vi -------------------------------------------------------------------------------- /src/SMO/Protected/FindDependency(byKey).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/FindDependency(byKey).vi -------------------------------------------------------------------------------- /src/SMO/Protected/Get Dependency State Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Get Dependency State Events.vi -------------------------------------------------------------------------------- /src/SMO/Protected/GetAttributeByName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/GetAttributeByName.vi -------------------------------------------------------------------------------- /src/SMO/Protected/GetDefaultConfigurationPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/GetDefaultConfigurationPath.vi -------------------------------------------------------------------------------- /src/SMO/Protected/GetProcessInstanceRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/GetProcessInstanceRef.vi -------------------------------------------------------------------------------- /src/SMO/Protected/GetProcessNotifierFromRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/GetProcessNotifierFromRef.vi -------------------------------------------------------------------------------- /src/SMO/Protected/GetProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/GetProtectedEvents.vi -------------------------------------------------------------------------------- /src/SMO/Protected/Handle Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Handle Error.vi -------------------------------------------------------------------------------- /src/SMO/Protected/List Processes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/List Processes.vi -------------------------------------------------------------------------------- /src/SMO/Protected/ListDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/ListDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Protected/ListPublicAttributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/ListPublicAttributes.vi -------------------------------------------------------------------------------- /src/SMO/Protected/ListThisLevelDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/ListThisLevelDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Protected/Read Process Kill timeout.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Read Process Kill timeout.vi -------------------------------------------------------------------------------- /src/SMO/Protected/Register Process (Default).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Register Process (Default).vi -------------------------------------------------------------------------------- /src/SMO/Protected/Register Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Register Process.vi -------------------------------------------------------------------------------- /src/SMO/Protected/SelfTerminate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/SelfTerminate.vi -------------------------------------------------------------------------------- /src/SMO/Protected/SetAttributeByName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/SetAttributeByName.vi -------------------------------------------------------------------------------- /src/SMO/Protected/Stop Dependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/Stop Dependency.vi -------------------------------------------------------------------------------- /src/SMO/Protected/ThisLevelClassName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/ThisLevelClassName.vi -------------------------------------------------------------------------------- /src/SMO/Protected/WaitOnFinalProcessSync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/WaitOnFinalProcessSync.vi -------------------------------------------------------------------------------- /src/SMO/Protected/WaitOnProcessSync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/WaitOnProcessSync.vi -------------------------------------------------------------------------------- /src/SMO/Protected/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /src/SMO/Protected/hasAttributeByType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/hasAttributeByType.vi -------------------------------------------------------------------------------- /src/SMO/Protected/isProcessAllowedRun.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/isProcessAllowedRun.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onCreate.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onCreated.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onCreated.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDependencyAttributeChanged.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDependencyAttributeChanged.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDependencyConfigChanged.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDependencyConfigChanged.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDependencyMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDependencyMessage.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDependencyStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDependencyStarted.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDependencyStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDependencyStopped.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDestroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDestroy.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onDestroyed.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onDestroyed.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onOwnershipChanged.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onOwnershipChanged.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessKill.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessKill.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessKilled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessKilled.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessStart.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessStarted.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessStartedWithErrors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessStartedWithErrors.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessStop.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onProcessStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onProcessStopped.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onSelfStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onSelfStop.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStart.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStarted.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStaticDependenciesStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStaticDependenciesStart.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStaticDependenciesStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStaticDependenciesStarted.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStop.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onStopped.vi -------------------------------------------------------------------------------- /src/SMO/Protected/onUnhandledDependencyError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Protected/onUnhandledDependencyError.vi -------------------------------------------------------------------------------- /src/SMO/ReserveDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/ReserveDependency.vi -------------------------------------------------------------------------------- /src/SMO/SMO Activity Tree.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/SMO Activity Tree.vi -------------------------------------------------------------------------------- /src/SMO/SMO Base Test Launcher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/SMO Base Test Launcher.vi -------------------------------------------------------------------------------- /src/SMO/SMO.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/SMO.lvclass -------------------------------------------------------------------------------- /src/SMO/Set Process Kill timeout.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Set Process Kill timeout.vi -------------------------------------------------------------------------------- /src/SMO/Start.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Start.vi -------------------------------------------------------------------------------- /src/SMO/Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Stop.vi -------------------------------------------------------------------------------- /src/SMO/Typedefs/AbortProcessEventData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/AbortProcessEventData--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Accessibility--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Accessibility--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Parent Call--Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Parent Call--Enum.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/PrivateData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/PrivateData--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/PrivateData--Ref.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/PrivateData--Ref.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Process Error Notification--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Process Error Notification--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/ProcessRegistrationRefnum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/ProcessRegistrationRefnum.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Protected Events.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Protected Events.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Public Events.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Public Events.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/RegisteredProcessData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/RegisteredProcessData--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Reserve State--Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Reserve State--Enum.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Reserved(Self)--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Reserved(Self)--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/SMO Dependency Event--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/SMO Dependency Event--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/SMO Dependency Event--Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/SMO Dependency Event--Enum.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/SMO Dependency--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/SMO Dependency--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/SMOState --Enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/SMOState --Enum.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/Search Key.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/Search Key.ctl -------------------------------------------------------------------------------- /src/SMO/Typedefs/StopProcessEventData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/Typedefs/StopProcessEventData--Cluster.ctl -------------------------------------------------------------------------------- /src/SMO/UnReserveDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/UnReserveDependency.vi -------------------------------------------------------------------------------- /src/SMO/WaitForState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/WaitForState.vi -------------------------------------------------------------------------------- /src/SMO/WaitForStateChange.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/WaitForStateChange.vi -------------------------------------------------------------------------------- /src/SMO/is StateMachineObject.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/is StateMachineObject.vi -------------------------------------------------------------------------------- /src/SMO/isStateMachineObject.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/isStateMachineObject.vi -------------------------------------------------------------------------------- /src/SMO/reuse/CastArrayDependenciesToClusterOrClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/reuse/CastArrayDependenciesToClusterOrClass.vi -------------------------------------------------------------------------------- /src/SMO/reuse/CastDependenciesClusterToArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/reuse/CastDependenciesClusterToArray.vi -------------------------------------------------------------------------------- /src/SMO/reuse/application control/Wait on VI Idle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/reuse/application control/Wait on VI Idle.vi -------------------------------------------------------------------------------- /src/SMO/setErrorHandlingBehavior.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMO/setErrorHandlingBehavior.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Arguments to Array of Variants.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Arguments to Array of Variants.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Call.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Clean Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Clean Facade.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Create Facade (byClass).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Create Facade (byClass).vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Create Facade (byURL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Create Facade (byURL).vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Define PublicEvents Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Define PublicEvents Type.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Get Component Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Get Component Type.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Get Method Prototype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Get Method Prototype.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Get PublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Get PublicEvents.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Get SMO State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Get SMO State.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Get SMO.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Get SMO.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/List API.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/List API.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/List Components.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/List Components.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Prepare Inputs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Prepare Inputs.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Read PublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Read PublicEvents.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Retrieve Outputs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Retrieve Outputs.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/Run.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/Run.vi -------------------------------------------------------------------------------- /src/SMOFacade/Facade/SMOFacade.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/SMOFacade.lvclass -------------------------------------------------------------------------------- /src/SMOFacade/Facade/isFacadeConnected.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Facade/isFacadeConnected.vi -------------------------------------------------------------------------------- /src/SMOFacade/PublicEvents/Create PublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/PublicEvents/Create PublicEvents.vi -------------------------------------------------------------------------------- /src/SMOFacade/PublicEvents/Get SMO Base Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/PublicEvents/Get SMO Base Events.vi -------------------------------------------------------------------------------- /src/SMOFacade/PublicEvents/Init PublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/PublicEvents/Init PublicEvents.vi -------------------------------------------------------------------------------- /src/SMOFacade/PublicEvents/PublicEvents.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/PublicEvents/PublicEvents.lvclass -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Control Definition -- Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Control Definition -- Cluster.ctl -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Get Caption.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Get Caption.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Get ControlIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Get ControlIndex.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Get DefaultValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Get DefaultValue.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Get Inputs Definition.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Get Inputs Definition.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Get Outputs Definition.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Get Outputs Definition.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/New Terminal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/New Terminal.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Sort Terminals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Sort Terminals.vi -------------------------------------------------------------------------------- /src/SMOFacade/Terminal/Terminal.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Terminal/Terminal.lvclass -------------------------------------------------------------------------------- /src/SMOFacade/Test SMO Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/SMOFacade/Test SMO Facade.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Attribute.Dependencies.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Attribute.Dependencies.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/DependencyAttr--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/DependencyAttr--Cluster.ctl -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Get Dependency (by GUID).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Get Dependency (by GUID).vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Get GUIDs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Get GUIDs.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Initialize Dependencies Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Initialize Dependencies Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/List Dependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/List Dependencies.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Remove Dependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Remove Dependency.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Dependencies/Update Dependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Dependencies/Update Dependency.vi -------------------------------------------------------------------------------- /src/Support/Attribute.ErrorHandling/Attribute.ErrorHandling.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.ErrorHandling/Attribute.ErrorHandling.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.ErrorHandling/Initialize ErrorHandling Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.ErrorHandling/Initialize ErrorHandling Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.ErrorHandling/Read UnhandledShutdown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.ErrorHandling/Read UnhandledShutdown.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Attribute.Identity.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Attribute.Identity.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Initialize Identity Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Initialize Identity Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read GUID.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read Given Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read Given Name.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read Name.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read ProspectiveOwner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read ProspectiveOwner.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read RegistryKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read RegistryKey.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read SecretKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read SecretKey.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Read UniqueName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Read UniqueName.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Write RegistryKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Write RegistryKey.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Identity/Write UniqueName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Identity/Write UniqueName.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Attribute.Owner.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Attribute.Owner.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Compute Shared Key.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Compute Shared Key.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Initialize Owner Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Initialize Owner Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Packet -- Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Packet -- Cluster.ctl -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Read Lineage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Read Lineage.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Read Owner Event Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Read Owner Event Ref.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Read Owner GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Read Owner GUID.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Read Owner Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Read Owner Name.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Read Shared Key.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Read Shared Key.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Send Message to Owner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Send Message to Owner.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/UnInitialize Owner Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/UnInitialize Owner Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Verify Key Match.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Verify Key Match.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Write Lineage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Write Lineage.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Write Owner GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Write Owner GUID.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Write Owner Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Write Owner Name.vi -------------------------------------------------------------------------------- /src/Support/Attribute.Owner/Write Shared Key.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.Owner/Write Shared Key.vi -------------------------------------------------------------------------------- /src/Support/Attribute.SharedResource/Attribute.SharedResource.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.SharedResource/Attribute.SharedResource.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.SharedResource/Initialize SharedRsc Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.SharedResource/Initialize SharedRsc Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.StartupBehavior/Attribute.StartupBehavior.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.StartupBehavior/Attribute.StartupBehavior.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute.StartupBehavior/Initialize StartupBehavior Attribute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.StartupBehavior/Initialize StartupBehavior Attribute.vi -------------------------------------------------------------------------------- /src/Support/Attribute.StartupBehavior/ProcessStartupBehavior.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.StartupBehavior/ProcessStartupBehavior.ctl -------------------------------------------------------------------------------- /src/Support/Attribute.StartupBehavior/Read Behavior.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute.StartupBehavior/Read Behavior.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Attribute.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Attribute.lvclass -------------------------------------------------------------------------------- /src/Support/Attribute/Find Attribute Match.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Find Attribute Match.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Read AttrName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Read AttrName.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Read Can be inherited.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Read Can be inherited.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Read Scope.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Read Scope.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Search Attributes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Search Attributes.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Write AttrName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Write AttrName.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Write Can be inherited.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Write Can be inherited.vi -------------------------------------------------------------------------------- /src/Support/Attribute/Write Scope.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/Write Scope.vi -------------------------------------------------------------------------------- /src/Support/Attribute/onAttributeOverwrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Support/Attribute/onAttributeOverwrite.vi -------------------------------------------------------------------------------- /src/Templates/ProcessTemplate (JKI-SM).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Templates/ProcessTemplate (JKI-SM).vi -------------------------------------------------------------------------------- /src/Templates/ProcessTemplate (Minimal).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Templates/ProcessTemplate (Minimal).vi -------------------------------------------------------------------------------- /src/Templates/ProcessTemplate (TimedLoop).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Templates/ProcessTemplate (TimedLoop).vi -------------------------------------------------------------------------------- /src/URI Parsing/Construct URI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/Construct URI.vi -------------------------------------------------------------------------------- /src/URI Parsing/EscapeURI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/EscapeURI.vi -------------------------------------------------------------------------------- /src/URI Parsing/Parse URI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/Parse URI.vi -------------------------------------------------------------------------------- /src/URI Parsing/URI.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/URI.lvlib -------------------------------------------------------------------------------- /src/URI Parsing/UT--Construct URIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/UT--Construct URIs.vi -------------------------------------------------------------------------------- /src/URI Parsing/UT--Parse URIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/UT--Parse URIs.vi -------------------------------------------------------------------------------- /src/URI Parsing/UnescapeURI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/URI Parsing/UnescapeURI.vi -------------------------------------------------------------------------------- /src/Utilities/ArrayToCluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Utilities/ArrayToCluster.vi -------------------------------------------------------------------------------- /src/Utilities/ClusterToArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Utilities/ClusterToArray.vi -------------------------------------------------------------------------------- /src/Utilities/Extract Element Names.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Utilities/Extract Element Names.vi -------------------------------------------------------------------------------- /src/Utilities/MatchInputs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/src/Utilities/MatchInputs.vi -------------------------------------------------------------------------------- /tests/Example--SMO.Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/Example--SMO.Example.vi -------------------------------------------------------------------------------- /tests/JKI SMO Example.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/JKI SMO Example.lvproj -------------------------------------------------------------------------------- /tests/JKI SMO Nested Dependencies Example.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/JKI SMO Nested Dependencies Example.lvproj -------------------------------------------------------------------------------- /tests/SMO_Test.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/SMO_Test.lvproj -------------------------------------------------------------------------------- /tests/SMO_Test.vipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/SMO_Test.vipc -------------------------------------------------------------------------------- /tests/_test-cases/Run Test Suite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/Run Test Suite.vi -------------------------------------------------------------------------------- /tests/_test-cases/Test-DynamicDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/Test-DynamicDependency.vi -------------------------------------------------------------------------------- /tests/_test-cases/Test-Reservation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/Test-Reservation.vi -------------------------------------------------------------------------------- /tests/_test-cases/Test-SMObase.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/Test-SMObase.vi -------------------------------------------------------------------------------- /tests/_test-cases/aggregation-lifetime-management.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/aggregation-lifetime-management.vi -------------------------------------------------------------------------------- /tests/_test-cases/attributes-dependencies-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/attributes-dependencies-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/attributes-identity-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/attributes-identity-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/attributes-owner-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/attributes-owner-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/attributes-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/attributes-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/basic-dependency-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/basic-dependency-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/basic-lifetime-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/basic-lifetime-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/dependency-callerregistration-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/dependency-callerregistration-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/dependency-listorder-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/dependency-listorder-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/dynamic-dependency-stop-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/dynamic-dependency-stop-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/large-object-count-parallel-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/large-object-count-parallel-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/large-object-count-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/large-object-count-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/list-shared-dependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/list-shared-dependencies.vi -------------------------------------------------------------------------------- /tests/_test-cases/object-generation-speedtest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/object-generation-speedtest.vi -------------------------------------------------------------------------------- /tests/_test-cases/process-sync-start-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/process-sync-start-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/registration-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/registration-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/shared-dependency-concurrency-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/shared-dependency-concurrency-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/shared-dependency-declareself&takeowner-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/shared-dependency-declareself&takeowner-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/shared-dependency-declareself-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/shared-dependency-declareself-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/shared-dependency-sequential-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/shared-dependency-sequential-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/shared-dependency-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/shared-dependency-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/unique-name-differnetowner-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/unique-name-differnetowner-test.vi -------------------------------------------------------------------------------- /tests/_test-cases/unique-name-multiple-instances.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/unique-name-multiple-instances.vi -------------------------------------------------------------------------------- /tests/_test-cases/unique-name-test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-cases/unique-name-test.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.A/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.A/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.A/SMO.A.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.A/SMO.A.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.A/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.A/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.DynamicLauncher/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.DynamicLauncher/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.DynamicLauncher/Read WaitStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.DynamicLauncher/Read WaitStarted.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.DynamicLauncher/SMO.DynamicLauncher.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.DynamicLauncher/SMO.DynamicLauncher.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.DynamicLauncher/Write WaitStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.DynamicLauncher/Write WaitStarted.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.DynamicLauncher/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.DynamicLauncher/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/Create Error Injection Test SMO.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/Create Error Injection Test SMO.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/Handle Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/Handle Error.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/SMO.ErrorInjection.TestLauncher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/SMO.ErrorInjection.TestLauncher.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/SMO.ErrorInjection.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/SMO.ErrorInjection.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/callback -- enum.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/callback -- enum.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/checkForErrorInjected.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/checkForErrorInjected.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onCreate.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onCreated.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onCreated.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyMessage.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyStarted.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onDependencyStopped.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onDestroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onDestroy.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onDestroyed.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onDestroyed.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onOwnershipChanged.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onOwnershipChanged.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessKill.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessKill.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessKilled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessKilled.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStart.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStarted.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStartedWithErrors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStartedWithErrors.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStop.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onProcessStopped.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onStart.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onStarted.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onStarted.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onStop.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onStopped.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onStopped.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.ErrorInjection/onUnhandledDependencyError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.ErrorInjection/onUnhandledDependencyError.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Launch ExampleDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Launch ExampleDependency.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Launch SelfTerminatingDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Launch SelfTerminatingDependency.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/CreateProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/CreateProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/CreatePublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/CreatePublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/CreateSelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/CreateSelfReference.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/DestroyProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/DestroyProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/DestroyPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/DestroyPublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/DestroySelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/DestroySelfReference.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Overrides/onProcessKilled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Overrides/onProcessKilled.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.DVRtoRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.DVRtoRef.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.ReftoDVR.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.ReftoDVR.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.SetData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.SetData.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.SetState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Private/SMO.Example.SetState.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Process--SMO.Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Process--SMO.Example.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.About.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.About.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.GetDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.GetDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.GetProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.GetProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.GetPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.GetPublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.GetPublicEventsRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.GetPublicEventsRegistration.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.SetConfiguration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.SetConfiguration.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.SetPumpState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.SetPumpState.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.SetValveState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.SetValveState.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.TestLauncher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.TestLauncher.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.VI Tree.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.VI Tree.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/SMO.Example.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/SMO.Example.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Stop ExampleDependency.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Stop ExampleDependency.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/API Inputs--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/API Inputs--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/Configuration--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/Configuration--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/DataChanged--EventData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/DataChanged--EventData--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/Dependencies--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/Dependencies--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/PrivateData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/PrivateData--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/PrivateData--Ref.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/PrivateData--Ref.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/ProtectedEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/ProtectedEvents--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/PublicEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/PublicEvents--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/PumpState--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/PumpState--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/Typedefs/ValveState--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/Typedefs/ValveState--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.Example/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.Example/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminating/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminating/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminating/SMO.SelfTerminating.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminating/SMO.SelfTerminating.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminatingOverride/Expose My Dependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminatingOverride/Expose My Dependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminatingOverride/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminatingOverride/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminatingOverride/SMO.SelfTerminatingOverride.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminatingOverride/SMO.SelfTerminatingOverride.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.SelfTerminatingOverride/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.SelfTerminatingOverride/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreateProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreateProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreatePublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreatePublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreateSelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/CreateSelfReference.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroyProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroyProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroyPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroyPublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroySelfReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Overrides/DestroySelfReference.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.DVRtoRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.DVRtoRef.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.ReftoDVR.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.ReftoDVR.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.SetData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Private/SMO.Example.SetData.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.A.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.A.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetProtectedEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetProtectedEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetPublicEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetPublicEvents.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetPublicEventsRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.GetPublicEventsRegistration.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.ListStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.ListStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetConfiguration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetConfiguration.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetPumpState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetPumpState.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetValveState.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.Example.SetValveState.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.TopLevel.TestLauncher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.TopLevel.TestLauncher.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/SMO.TopLevel.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/SMO.TopLevel.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/API Inputs--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/API Inputs--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/Configuration--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/Configuration--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/DataChanged--EventData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/DataChanged--EventData--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/Dependencies--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/Dependencies--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PrivateData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PrivateData--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PrivateData--Ref.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PrivateData--Ref.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/ProtectedEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/ProtectedEvents--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PublicEvents--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PublicEvents--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PumpState--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/PumpState--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/Typedefs/ValveState--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/Typedefs/ValveState--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.TopLevel/enumerateStaticDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.TopLevel/enumerateStaticDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/Process.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.Get Dependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.Get Dependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.SetDependencies.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.SetDependencies.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.TestLauncher.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.TestLauncher.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/SMO.UI.Example.lvclass -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/Show User Interface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/Show User Interface.vi -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/Typedefs/Dependencies--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/Typedefs/Dependencies--Cluster.ctl -------------------------------------------------------------------------------- /tests/_test-support-SMOs/SMO.UI.Example/Typedefs/PrivateData--Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKISoftware/JKI-State-Machine-Objects/HEAD/tests/_test-support-SMOs/SMO.UI.Example/Typedefs/PrivateData--Cluster.ctl --------------------------------------------------------------------------------