public boolean equals()

in ttl-core/src/main/java/com/alibaba/ttl3/executor/ExecutorTtlWrapper.java [39:47]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        ExecutorTtlWrapper that = (ExecutorTtlWrapper) o;

        if (idempotent != that.idempotent) return false;
        return executor.equals(that.executor);
    }