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

io.mantisrx.api.services.AppStreamStore Maven / Gradle / Ivy

The newest version!
package io.mantisrx.api.services;

import com.google.common.collect.ImmutableList;
import io.mantisrx.discovery.proto.AppJobClustersMap;
import java.io.IOException;
import java.util.Collection;

/**
 * Interface to get streams associated with a given app or set of apps
 */
public interface AppStreamStore {
  default AppJobClustersMap getJobClusterMappings(String app) throws IOException {
    return getJobClusterMappings(ImmutableList.of(app));
  }

  AppJobClustersMap getJobClusterMappings(Collection apps) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy