gusucode.com > bigdata 工具箱 matlab源码程序 > bigdata/+matlab/+bigdata/+internal/+executor/OutputCommunicationType.m

    %OutputCommunicationType
% An enumeration of the different output communication types supported by
% ExecutionTask.
%

%   Copyright 2015 The MathWorks, Inc.

classdef OutputCommunicationType
    enumeration
        % Non-communicating output.
        Simple
        
        % Communication from N partitions to 1 partition.
        AllToOne
        
        % Arbitrary communication from N partitions to M partition.
        AnyToAny

        % Communication from 1 partition to N partitions.
        Broadcast
    end
end