Documentation
¶
Index ¶
- Constants
- type Argument
- func (arg *Argument) AppendChild(child vm.Operator)
- func (arg *Argument) Call(proc *process.Process) (vm.CallResult, error)
- func (arg *Argument) Free(proc *process.Process, pipelineFailed bool, err error)
- func (arg *Argument) Prepare(proc *process.Process) error
- func (arg *Argument) SetInfo(info *vm.OperatorInfo)
- func (arg *Argument) String(buf *bytes.Buffer)
Constants ¶
View Source
const ( SendToAllLocalFunc = iota SendToAllFunc SendToAnyLocalFunc SendToAnyFunc ShuffleToAllFunc )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Argument ¶
type Argument struct {
// IsSink means this is a Sink Node
IsSink bool
// RecSink means this is a Recursive Sink Node
RecSink bool
// FuncId means the sendFunc you want to call
FuncId int
// LocalRegs means the local register you need to send to.
LocalRegs []*process.WaitRegister
// RemoteRegs specific the remote reg you need to send to.
RemoteRegs []colexec.ReceiveInfo
// for shuffle dispatch
ShuffleType int32
ShuffleRegIdxLocal []int
ShuffleRegIdxRemote []int
Children []vm.Operator
// contains filtered or unexported fields
}
func (*Argument) AppendChild ¶ added in v1.1.0
func (*Argument) SetInfo ¶ added in v1.1.0
func (arg *Argument) SetInfo(info *vm.OperatorInfo)
Click to show internal directories.
Click to hide internal directories.