Dataset Viewer
instruction
stringlengths 19
151
| input
stringclasses 1
value | output
stringlengths 22
946
|
---|---|---|
What is QAIFlowType? | These are the objects in LinkOnX's Flow Object that have 'OperationFlow' as their parent object.
QAIFlowType is Enum. The supported values are as follows:
QAIFlowType = { EventListener,Receiver,PlcEventTrigger,Sender,ByPass,SECSTraceHandler,GEMHandler,FtpUploader,FtpDownloader,StaticVariableSetValueSetter,Decision,CalculationHandler,DynamicDecision,LinkerSetter,DataStoreSetter,FunctionSetter,Goto,Comment,Sleep,GotoLabel,SqlAppender,SqlExecuter,SqlDataAdapter,MailSender,MailSenderAdapter,ExternalDataLoader,ExternalFlowExecuter,ExternalDataSetter,PlugInCommandHandler,LogHandler,AutoTraceHandler,TraceMessageAdapter, EventListenerCondition,EventListenerFormula,PlcEventTriggerCondition,PlcEventTriggerFormula,ReceiverCondition,ReceiverFormula,MessageAdapter,TraceMessageAdapter,ByPassAdapter,StaticVariableValueSetter,DecisionCondition,DecisionFormula,DynamicDecisionCondition,DynamicDecisionFormula,Calculator,CalculatorConditionFormula } |
|
Please explain the Add(QAIFlowType qType) function (method) in LinkOnX. | This is a method for adding supported types in QAIFlowType.
[Method]
Add(QAIFlowType qType):
[Parameters]
- qType : QAIFlowType 값 { EventListener,Receiver,PlcEventTrigger,Sender,ByPass,SECSTraceHandler,GEMHandler,FtpUploader,FtpDownloader,StaticVariableSetValueSetter,Decision,CalculationHandler,DynamicDecision,LinkerSetter,DataStoreSetter,FunctionSetter,Goto,Comment,Sleep,GotoLabel,SqlAppender,SqlExecuter,SqlDataAdapter,MailSender,MailSenderAdapter,ExternalDataLoader,ExternalFlowExecuter,ExternalDataSetter,PlugInCommandHandler,LogHandler,AutoTraceHandler,TraceMessageAdapter, EventListenerCondition,EventListenerFormula,PlcEventTriggerCondition,PlcEventTriggerFormula,ReceiverCondition,ReceiverFormula,MessageAdapter,TraceMessageAdapter,ByPassAdapter,StaticVariableValueSetter,DecisionCondition,DecisionFormula,DynamicDecisionCondition,DynamicDecisionFormula,Calculator,CalculatorConditionFormula }
[Sample]
Add(QAIFlowType.Receiver); |
|
When is QAIFlowType.Receiver used in LinkOnX? | When a message is received. |
|
When is QAIFlowType.ReceiverCondition used in LinkOnX? | When setting the message to be received by the Receiver. |
|
When is QAIFlowType.EventListener used in LinkOnX? | For message reception events. |
|
When is QAIFlowType.EventListenerCondition used in LinkOnX? | When setting the message to be received by the EventListener. |
|
Please, Add to EventListener | Add(QAIFlowType.EventListener);
Add(QAIFlowType.EventListenerCondition); |
|
Please, Add to Receiver | Add(QAIFlowType.Receiver);
Add(QAIFlowType.ReceiverCondition); |
|
Please, Add to PlcEventTrigger | Add(QAIFlowType.PlcEventTrigger);
Add(QAIFlowType.PlcEventTriggerCondition); |
|
Please, Add to Sender | Add(QAIFlowType.Sender);
Add(QAIFlowType.MessageAdapter); |
|
Please, Add to ByPass | Add(QAIFlowType.ByPass); |
|
Please, Add to SECSTraceHandler | Add(QAIFlowType.SECSTraceHandler); |
|
Please, Add to GEMHandler | Add(QAIFlowType.GEMHandler); |
|
Please, Add to FtpUploader | Add(QAIFlowType.FtpUploader); |
|
Please, Add to FtpDownloader | Add(QAIFlowType.FtpDownloader) |
|
Please, Add to StaticVariableSetValueSetter | Add(QAIFlowType.StaticVariableSetValueSetter); |
|
Please, Add to Decision | Add(QAIFlowType.Decision);
Add(QAIFlowType.DecisionCondition); |
|
Please, Add to CalculationHandler | Add(QAIFlowType.CalculationHandler); |
|
Please, Add to DynamicDecision | Add(QAIFlowType.DynamicDecision);
Add(QAIFlowType.DynamicDecisionCondition); |
|
Please, Add to LinkerSetter | Add(QAIFlowType.LinkerSetter); |
|
Please, Add to DataStoreSetter | Add(QAIFlowType.DataStoreSetter); |
|
Please, Add to FunctionSetter | Add(QAIFlowType.FunctionSetter); |
|
Please, Add to Goto | Add(QAIFlowType.Goto); |
|
Please, Add to Comment | Add(QAIFlowType.Comment); |
|
Please, Add to Sleep | Add(QAIFlowType.Sleep); |
|
Please, Add to GotoLabel | Add(QAIFlowType.GotoLabel); |
|
Please, Add to SqlAppender | Add(QAIFlowType.SqlAppender); |
|
Please, Add to SqlExecuter | Add(QAIFlowType.SqlExecuter); |
|
Please, Add to SqlDataAdapter | Add(QAIFlowType.SqlDataAdapter); |
|
Please, Add to MailSender | Add(QAIFlowType.MailSender); |
|
Please, Add to MailSenderAdapter | Add(QAIFlowType.MailSenderAdapter); |
|
Please, Add to ExternalDataLoader | Add(QAIFlowType.ExternalDataLoader); |
|
Please, Add to ExternalFlowExecuter | Add(QAIFlowType.ExternalFlowExecuter); |
|
Please, Add to ExternalDataSetter | Add(QAIFlowType.ExternalDataSetter); |
|
Please, Add to PlugInCommandHandler | Add(QAIFlowType.PlugInCommandHandler); |
|
Please, Add to LogHandler | Add(QAIFlowType.LogHandler); |
|
Please, Add to AutoTraceHandler | Add(QAIFlowType.AutoTraceHandler);
Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Add to TraceMessageAdapter | Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Add to EventListenerCondition | Add(QAIFlowType.EventListenerCondition); |
|
Please, Add to EventListenerFormula | Add(QAIFlowType.EventListenerFormula); |
|
Please, Add to PlcEventTriggerCondition | Add(QAIFlowType.PlcEventTriggerCondition); |
|
Please, Add to PlcEventTriggerFormula | Add(QAIFlowType.PlcEventTriggerFormula); |
|
Please, Add to ReceiverCondition | Add(QAIFlowType.ReceiverCondition); |
|
Please, Add to ReceiverFormula | Add(QAIFlowType.ReceiverFormula); |
|
Please, Add to MessageAdapter | Add(QAIFlowType.MessageAdapter); |
|
Please, Add to TraceMessageAdapter | Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Add to ByPassAdapter | Add(QAIFlowType.ByPassAdapter); |
|
Please, Add to StaticVariableValueSetter | Add(QAIFlowType.StaticVariableValueSetter); |
|
Please, Add to DecisionCondition | Add(QAIFlowType.DecisionCondition); |
|
Please, Add to DecisionFormula | Add(QAIFlowType.DecisionFormula); |
|
Please, Add to DynamicDecisionCondition | Add(QAIFlowType.DynamicDecisionCondition); |
|
Please, Add to DynamicDecisionFormula | Add(QAIFlowType.DynamicDecisionFormula); |
|
Please, Add to Calculator | Add(QAIFlowType.Calculator); |
|
Please, Add to CalculatorConditionFormula | Add(QAIFlowType.CalculatorConditionFormula); |
|
Please, Append to EventListener | Add(QAIFlowType.EventListener);
Add(QAIFlowType.EventListenerCondition); |
|
Please, Append to Receiver | Add(QAIFlowType.Receiver);
Add(QAIFlowType.ReceiverCondition); |
|
Please, Append to PlcEventTrigger | Add(QAIFlowType.PlcEventTrigger);
Add(QAIFlowType.PlcEventTriggerCondition); |
|
Please, Append to Sender | Add(QAIFlowType.Sender);
Add(QAIFlowType.MessageAdapter); |
|
Please, Append to ByPass | Add(QAIFlowType.ByPass); |
|
Please, Append to SECSTraceHandler | Add(QAIFlowType.SECSTraceHandler); |
|
Please, Append to GEMHandler | Add(QAIFlowType.GEMHandler); |
|
Please, Append to FtpUploader | Add(QAIFlowType.FtpUploader); |
|
Please, Append to FtpDownloader | Add(QAIFlowType.FtpDownloader) |
|
Please, Append to StaticVariableSetValueSetter | Add(QAIFlowType.StaticVariableSetValueSetter); |
|
Please, Append to Decision | Add(QAIFlowType.Decision);
Add(QAIFlowType.DecisionCondition); |
|
Please, Append to CalculationHandler | Add(QAIFlowType.CalculationHandler); |
|
Please, Append to DynamicDecision | Add(QAIFlowType.DynamicDecision);
Add(QAIFlowType.DynamicDecisionCondition); |
|
Please, Append to LinkerSetter | Add(QAIFlowType.LinkerSetter); |
|
Please, Append to DataStoreSetter | Add(QAIFlowType.DataStoreSetter); |
|
Please, Append to FunctionSetter | Add(QAIFlowType.FunctionSetter); |
|
Please, Append to Goto | Add(QAIFlowType.Goto); |
|
Please, Append to Comment | Add(QAIFlowType.Comment); |
|
Please, Append to Sleep | Add(QAIFlowType.Sleep); |
|
Please, Append to GotoLabel | Add(QAIFlowType.GotoLabel); |
|
Please, Append to SqlAppender | Add(QAIFlowType.SqlAppender); |
|
Please, Append to SqlExecuter | Add(QAIFlowType.SqlExecuter); |
|
Please, Append to SqlDataAdapter | Add(QAIFlowType.SqlDataAdapter); |
|
Please, Append to MailSender | Add(QAIFlowType.MailSender); |
|
Please, Append to MailSenderAdapter | Add(QAIFlowType.MailSenderAdapter); |
|
Please, Append to ExternalDataLoader | Add(QAIFlowType.ExternalDataLoader); |
|
Please, Append to ExternalFlowExecuter | Add(QAIFlowType.ExternalFlowExecuter); |
|
Please, Append to ExternalDataSetter | Add(QAIFlowType.ExternalDataSetter); |
|
Please, Append to PlugInCommandHandler | Add(QAIFlowType.PlugInCommandHandler); |
|
Please, Append to LogHandler | Add(QAIFlowType.LogHandler); |
|
Please, Append to AutoTraceHandler | Add(QAIFlowType.AutoTraceHandler);
Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Append to TraceMessageAdapter | Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Append to EventListenerCondition | Add(QAIFlowType.EventListenerCondition); |
|
Please, Append to EventListenerFormula | Add(QAIFlowType.EventListenerFormula); |
|
Please, Append to PlcEventTriggerCondition | Add(QAIFlowType.PlcEventTriggerCondition); |
|
Please, Append to PlcEventTriggerFormula | Add(QAIFlowType.PlcEventTriggerFormula); |
|
Please, Append to ReceiverCondition | Add(QAIFlowType.ReceiverCondition); |
|
Please, Append to ReceiverFormula | Add(QAIFlowType.ReceiverFormula); |
|
Please, Append to MessageAdapter | Add(QAIFlowType.MessageAdapter); |
|
Please, Append to TraceMessageAdapter | Add(QAIFlowType.TraceMessageAdapter); |
|
Please, Append to ByPassAdapter | Add(QAIFlowType.ByPassAdapter); |
|
Please, Append to StaticVariableValueSetter | Add(QAIFlowType.StaticVariableValueSetter); |
|
Please, Append to DecisionCondition | Add(QAIFlowType.DecisionCondition); |
|
Please, Append to DecisionFormula | Add(QAIFlowType.DecisionFormula); |
|
Please, Append to DynamicDecisionCondition | Add(QAIFlowType.DynamicDecisionCondition); |
|
Please, Append to DynamicDecisionFormula | Add(QAIFlowType.DynamicDecisionFormula); |
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 59