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

com.almworks.jira.structure.api.effectbatch.EffectService Maven / Gradle / Ivy

The newest version!
package com.almworks.jira.structure.api.effectbatch;

import com.atlassian.annotations.Internal;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

// there really cannot be any other EffectService rather than InMemoryEffectService because
// batches have mutable state
@Internal
public interface EffectService {
  long recordBatch(@NotNull EffectBatch batch);
  @Nullable EffectBatch loadBatch(long batchId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy