org.zalando.riptide.idempotency.IdempotencyDetector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riptide-idempotency Show documentation
Show all versions of riptide-idempotency Show documentation
Client side response routing
package org.zalando.riptide.idempotency;
import org.apiguardian.api.API;
import org.zalando.riptide.RequestArguments;
import static org.apiguardian.api.API.Status.EXPERIMENTAL;
@API(status = EXPERIMENTAL)
@FunctionalInterface
public interface IdempotencyDetector {
Decision test(final RequestArguments arguments, Test root);
@FunctionalInterface
interface Test {
Decision test(RequestArguments arguments);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy