001package io.ebeaninternal.server.cluster;
002
003import io.ebean.config.ContainerConfig;
004
005/**
006 * Factory to create the cluster broadcast service.
007 */
008public interface ClusterBroadcastFactory {
009
010  /**
011   * Create the cluster transport with the manager and deployment properties.
012   */
013  ClusterBroadcast create(ClusterManager manager, ContainerConfig config);
014}