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

io.serialized.client.aggregate.cache.StateCache Maven / Gradle / Ivy

The newest version!
package io.serialized.client.aggregate.cache;

import java.util.Optional;
import java.util.UUID;

public interface StateCache {

  void put(UUID aggregateId, VersionedState versionedState);

  Optional> get(UUID aggregateId);

  void invalidate(UUID aggregateId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy