├── @Delay.ps1 ├── @FileChange.ps1 ├── @Repeat.ps1 ├── @Time.ps1 ├── Clear-EventSource.ps1 ├── EventSources ├── @HttpResponse.ps1 ├── @Job.ps1 ├── @ModuleChanged.ps1 ├── @PowerShellAsync.ps1 ├── @Process.ps1 ├── @UDP.ps1 └── @VariableSet.ps1 ├── Formatting └── OnQ.EventSource.format.ps1 ├── Get-EventSource.ps1 ├── LICENSE ├── OnQ.azure-pipeline.yml ├── OnQ.ezout.ps1 ├── OnQ.format.ps1xml ├── OnQ.psd1 ├── OnQ.psm1 ├── OnQ.tests.ps1 ├── OnQ.types.ps1xml ├── README.md ├── Receive-Event.ps1 ├── Send-Event.ps1 ├── Types └── OnQ.EventSource │ ├── get_Description.ps1 │ ├── get_EventSourceID.ps1 │ ├── get_Help.ps1 │ └── get_Synopsis.ps1 ├── Understanding_Event_Sources.md ├── Watch-Event.ps1 └── en-us ├── Understanding_Event_Sources.help.txt └── about_OnQ.help.txt /@Delay.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/@Delay.ps1 -------------------------------------------------------------------------------- /@FileChange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/@FileChange.ps1 -------------------------------------------------------------------------------- /@Repeat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/@Repeat.ps1 -------------------------------------------------------------------------------- /@Time.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/@Time.ps1 -------------------------------------------------------------------------------- /Clear-EventSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Clear-EventSource.ps1 -------------------------------------------------------------------------------- /EventSources/@HttpResponse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@HttpResponse.ps1 -------------------------------------------------------------------------------- /EventSources/@Job.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@Job.ps1 -------------------------------------------------------------------------------- /EventSources/@ModuleChanged.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@ModuleChanged.ps1 -------------------------------------------------------------------------------- /EventSources/@PowerShellAsync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@PowerShellAsync.ps1 -------------------------------------------------------------------------------- /EventSources/@Process.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@Process.ps1 -------------------------------------------------------------------------------- /EventSources/@UDP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@UDP.ps1 -------------------------------------------------------------------------------- /EventSources/@VariableSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/EventSources/@VariableSet.ps1 -------------------------------------------------------------------------------- /Formatting/OnQ.EventSource.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Formatting/OnQ.EventSource.format.ps1 -------------------------------------------------------------------------------- /Get-EventSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Get-EventSource.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/LICENSE -------------------------------------------------------------------------------- /OnQ.azure-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.azure-pipeline.yml -------------------------------------------------------------------------------- /OnQ.ezout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.ezout.ps1 -------------------------------------------------------------------------------- /OnQ.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.format.ps1xml -------------------------------------------------------------------------------- /OnQ.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.psd1 -------------------------------------------------------------------------------- /OnQ.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.psm1 -------------------------------------------------------------------------------- /OnQ.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.tests.ps1 -------------------------------------------------------------------------------- /OnQ.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/OnQ.types.ps1xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/README.md -------------------------------------------------------------------------------- /Receive-Event.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Receive-Event.ps1 -------------------------------------------------------------------------------- /Send-Event.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Send-Event.ps1 -------------------------------------------------------------------------------- /Types/OnQ.EventSource/get_Description.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Types/OnQ.EventSource/get_Description.ps1 -------------------------------------------------------------------------------- /Types/OnQ.EventSource/get_EventSourceID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Types/OnQ.EventSource/get_EventSourceID.ps1 -------------------------------------------------------------------------------- /Types/OnQ.EventSource/get_Help.ps1: -------------------------------------------------------------------------------- 1 | Get-Help $this.EventSourceId 2 | -------------------------------------------------------------------------------- /Types/OnQ.EventSource/get_Synopsis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Types/OnQ.EventSource/get_Synopsis.ps1 -------------------------------------------------------------------------------- /Understanding_Event_Sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Understanding_Event_Sources.md -------------------------------------------------------------------------------- /Watch-Event.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/Watch-Event.ps1 -------------------------------------------------------------------------------- /en-us/Understanding_Event_Sources.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/en-us/Understanding_Event_Sources.help.txt -------------------------------------------------------------------------------- /en-us/about_OnQ.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/OnQ/HEAD/en-us/about_OnQ.help.txt --------------------------------------------------------------------------------