All Downloads are FREE. Search and download functionalities are using the official Maven repository.

games.mythical.saga.sdk.client.executor.SagaReservationExecutor Maven / Gradle / Ivy

There is a newer version: 1.1.30
Show newest version
package games.mythical.saga.sdk.client.executor;

import games.mythical.saga.sdk.client.model.SagaItem;

import java.util.List;

public interface SagaReservationExecutor extends BaseSagaExecutor {
    void onReservationCreated(String reservationId, String traceId);
    void onReservationRedeemed(String reservationId, List items, List failedBatches, String traceId);
    void onReservationReleased(String reservationId, String traceId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy