package com.xfestudio.xfeservermanager.api.spi;
import com.xfestudio.xfeservermanager.api.store.EventStore;
import com.xfestudio.xfeservermanager.api.store.EventStoreConfiguration;
/** Service-provider entry point for durable control and event storage backends. */
public interface EventStoreProvider {
String providerId();
EventStore open(EventStoreConfiguration configuration) throws EventStoreProviderException;
}
package com.xfestudio.xfeservermanager.api.spi;
import com.xfestudio.xfeservermanager.api.store.EventStore;
import com.xfestudio.xfeservermanager.api.store.EventStoreConfiguration;
/** Service-provider entry point for durable control and event storage backends. */
public interface EventStoreProvider {
String providerId();
EventStore open(EventStoreConfiguration configuration) throws EventStoreProviderException;
}