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

io.eventuate.tram.sagas.testing.SagaParticipantChannels Maven / Gradle / Ivy

There is a newer version: 0.24.0.RELEASE
Show newest version
package io.eventuate.tram.sagas.testing;

import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

public class SagaParticipantChannels {
  
  private Set channels;

  public SagaParticipantChannels(String... channels) {
    this.channels = new HashSet<>(Arrays.asList(channels));
  }

  public Set getChannels() {
    return channels;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy