Skip to content

FlowableMultiInstanceActivityEventImpl#isSequential() typo issue #4268

Description

@chuntungho

The method isSequential return false regardless of the value set.

public class FlowableMultiInstanceActivityEventImpl extends FlowableActivityEventImpl implements FlowableMultiInstanceActivityEvent{
    protected boolean sequential;

    public FlowableMultiInstanceActivityEventImpl(FlowableEngineEventType type) {
        super(type);
    }

    public void setSequential(boolean sequential) {
        this.sequential = sequential;
    }

    @Override
    public boolean isSequential() {
        return false;
    }

}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions