public boolean equals()

in flux/src/main/java/software/amazon/aws/clients/swf/flux/TaskListConfig.java [140:154]


    public boolean equals(Object other) {
        if (this == other) {
            return true;
        }
        if (other == null || getClass() != other.getClass()) {
            return false;
        }
        TaskListConfig that = (TaskListConfig) other;
        return bucketCount == that.bucketCount
               && activityTaskThreadCount == that.activityTaskThreadCount
               && decisionTaskThreadCount == that.decisionTaskThreadCount
               && periodicSubmitterThreadCount == that.periodicSubmitterThreadCount
               && Objects.equals(activityTaskPollerThreadCount, that.activityTaskPollerThreadCount)
               && Objects.equals(decisionTaskPollerThreadCount, that.decisionTaskPollerThreadCount);
    }