Dataset Viewer
instruction
stringlengths 14
155
| input
stringclasses 1
value | output
stringlengths 17
930
|
---|---|---|
QAIFlowType ์ ๋ฌด์์ธ๊ฐ์? | LinkOnX์ Flow Object ์์ 'OperationFlow' ๋ฅผ ๋ถ๋ชจ Object์ผ๋ก ๊ฐ์ง๋ Object ๋ค ์
๋๋ค.
QAIFlowType์ Enum ์
๋๋ค. ์ง์ํ๋ ๊ฐ์ ์๋์ ๊ฐ์ต๋๋ค.
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 } |
|
LinkOnX์์ C# Code ๋ฐฉ์์ผ๋ก ์ง์ํ๋ Function(Method) ์ ๋ฌด์์ธ๊ฐ์? | ์๋์ 3๊ฐ์ Function๋ง์ ์ง์ํฉ๋๋ค.
-Add(QAIFlowType qType);
-SetMessage(string messageName);
-SetLinkerSet(string linkerSetName); |
|
LinkOnX ์์ Add(QAIFlowType qType) Fuction(Method) ๋ํด์ ์ค๋ช
ํด์ฃผ์ธ์. | QAIFlowType ์์ ์ง์ ํ๋ Type์ ์ถ๊ฐํ๋ Method ์
๋๋ค.
[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); |
|
LinkOnX ์์ QAIFlowType.Receiver ๋ฅผ ์ฌ์ฉํ๋ Case ๋ ์ด๋ค๊ฒ์ด ์๋์? | Message ๋ฅผ ๋ฐ์์ ๊ฒฝ์ฐ, Message ๋ฅผ ์์ ํ์ ๊ฒฝ์ฐ, ๋ฉ์์ง๋ฅผ ๋ฐ์์ ๊ฒฝ์ฐ, ๋ฉ์์ง๋ฅผ ์์ ํ์ ๊ฒฝ์ฐ. |
|
LinkOnX ์์ QAIFlowType.ReceiverCondition ๋ฅผ ์ฌ์ฉํ๋ Case ๋ ์ด๋ค๊ฒ์ด ์๋์? | Receiver ์ ๋ฐ์ Message๋ฅผ ์ค์ ํ ๊ฒฝ์ฐ. |
|
LinkOnX ์์ QAIFlowType.EventListener ๋ฅผ ์ฌ์ฉํ๋ Case ๋ ์ด๋ค๊ฒ์ด ์๋์? | Message ์์ Event. |
|
LinkOnX ์์ QAIFlowType.EventListenerCondition ๋ฅผ ์ฌ์ฉํ๋ Case ๋ ์ด๋ค๊ฒ์ด ์๋์? | EventListener ์ ๋ฐ์ Message๋ฅผ ์ค์ ํ ๊ฒฝ์ฐ. |
|
EventListener ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListener); |
|
Receiver ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Receiver); |
|
PlcEventTrigger ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTrigger); |
|
Sender ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Sender); |
|
ByPass ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ByPass); |
|
SECSTraceHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.SECSTraceHandler); |
|
GEMHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.GEMHandler); |
|
FtpUploader ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.FtpUploader); |
|
FtpDownloader ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.FtpDownloader) |
|
StaticVariableSetValueSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.StaticVariableSetValueSetter); |
|
Decision ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Decision); |
|
CalculationHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.CalculationHandler); |
|
DynamicDecision ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DynamicDecision); |
|
LinkerSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.LinkerSetter); |
|
DataStoreSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DataStoreSetter); |
|
FunctionSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.FunctionSetter); |
|
Goto ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Goto); |
|
Comment ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Comment); |
|
Sleep ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Sleep); |
|
GotoLabel ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.GotoLabel); |
|
SqlAppender ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlAppender); |
|
SqlExecuter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlExecuter); |
|
SqlDataAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlDataAdapter); |
|
MailSender ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.MailSender); |
|
MailSenderAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.MailSenderAdapter); |
|
ExternalDataLoader ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalDataLoader); |
|
ExternalFlowExecuter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalFlowExecuter); |
|
ExternalDataSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalDataSetter); |
|
PlugInCommandHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.PlugInCommandHandler); |
|
LogHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.LogHandler); |
|
AutoTraceHandler ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.AutoTraceHandler); |
|
TraceMessageAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.TraceMessageAdapter); |
|
EventListenerCondition ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListenerCondition); |
|
EventListenerFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListenerFormula); |
|
PlcEventTriggerCondition ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTriggerCondition); |
|
PlcEventTriggerFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTriggerFormula); |
|
ReceiverCondition ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ReceiverCondition); |
|
ReceiverFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ReceiverFormula); |
|
MessageAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.MessageAdapter); |
|
TraceMessageAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.TraceMessageAdapter); |
|
ByPassAdapter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.ByPassAdapter); |
|
StaticVariableValueSetter ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.StaticVariableValueSetter); |
|
DecisionCondition ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DecisionCondition); |
|
DecisionFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DecisionFormula); |
|
DynamicDecisionCondition ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DynamicDecisionCondition); |
|
DynamicDecisionFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.DynamicDecisionFormula); |
|
Calculator ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.Calculator); |
|
CalculatorConditionFormula ์ถ๊ฐ ํด์ฃผ์ธ์. | Add(QAIFlowType.CalculatorConditionFormula); |
|
EventListener ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListener); |
|
Receiver ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Receiver); |
|
PlcEventTrigger ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTrigger); |
|
Sender ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Sender); |
|
ByPass ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ByPass); |
|
SECSTraceHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.SECSTraceHandler); |
|
GEMHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.GEMHandler); |
|
FtpUploader ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.FtpUploader); |
|
FtpDownloader ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.FtpDownloader) |
|
StaticVariableSetValueSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.StaticVariableSetValueSetter); |
|
Decision ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Decision); |
|
CalculationHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.CalculationHandler); |
|
DynamicDecision ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.DynamicDecision); |
|
LinkerSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.LinkerSetter); |
|
DataStoreSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.DataStoreSetter); |
|
FunctionSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.FunctionSetter); |
|
Goto ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Goto); |
|
Comment ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Comment); |
|
Sleep ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.Sleep); |
|
GotoLabel ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.GotoLabel); |
|
SqlAppender ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlAppender); |
|
SqlExecuter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlExecuter); |
|
SqlDataAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.SqlDataAdapter); |
|
MailSender ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.MailSender); |
|
MailSenderAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.MailSenderAdapter); |
|
ExternalDataLoader ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalDataLoader); |
|
ExternalFlowExecuter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalFlowExecuter); |
|
ExternalDataSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ExternalDataSetter); |
|
PlugInCommandHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.PlugInCommandHandler); |
|
LogHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.LogHandler); |
|
AutoTraceHandler ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.AutoTraceHandler); |
|
TraceMessageAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.TraceMessageAdapter); |
|
EventListenerCondition ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListenerCondition); |
|
EventListenerFormula ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.EventListenerFormula); |
|
PlcEventTriggerCondition ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTriggerCondition); |
|
PlcEventTriggerFormula ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.PlcEventTriggerFormula); |
|
ReceiverCondition ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ReceiverCondition); |
|
ReceiverFormula ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ReceiverFormula); |
|
MessageAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.MessageAdapter); |
|
TraceMessageAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.TraceMessageAdapter); |
|
ByPassAdapter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.ByPassAdapter); |
|
StaticVariableValueSetter ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.StaticVariableValueSetter); |
|
DecisionCondition ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.DecisionCondition); |
|
DecisionFormula ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.DecisionFormula); |
|
DynamicDecisionCondition ์ฝ์
ํด์ฃผ์ธ์. | Add(QAIFlowType.DynamicDecisionCondition); |
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 78