Class BaseLowLevelMutingService.AbstractMutesConsumer<T>
- java.lang.Object
-
- jetbrains.buildServer.serverSide.mute.BaseLowLevelMutingService.AbstractMutesConsumer<T>
-
- All Implemented Interfaces:
BaseLowLevelMutingService.MutesConsumer<T>
- Enclosing class:
- BaseLowLevelMutingService<T>
public abstract static class BaseLowLevelMutingService.AbstractMutesConsumer<T> extends Object implements BaseLowLevelMutingService.MutesConsumer<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractMutesConsumer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
consumeMutedInBuild(Integer muteId, Long buildId, T problemId)
void
consumeMutedInBuildType(Integer muteId, String buildTypeId, T problemId)
void
consumeMutedInProject(Integer muteId, String projectId, T problemId)
-
-
-
Method Detail
-
consumeMutedInProject
public void consumeMutedInProject(@NotNull Integer muteId, @NotNull String projectId, @NotNull T problemId)
- Specified by:
consumeMutedInProject
in interfaceBaseLowLevelMutingService.MutesConsumer<T>
-
consumeMutedInBuildType
public void consumeMutedInBuildType(@NotNull Integer muteId, @NotNull String buildTypeId, @NotNull T problemId)
- Specified by:
consumeMutedInBuildType
in interfaceBaseLowLevelMutingService.MutesConsumer<T>
-
consumeMutedInBuild
public void consumeMutedInBuild(@Nullable Integer muteId, @NotNull Long buildId, @NotNull T problemId)
- Specified by:
consumeMutedInBuild
in interfaceBaseLowLevelMutingService.MutesConsumer<T>
-
-