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

com.google.sitebricks.channel.Switchboard Maven / Gradle / Ivy

package com.google.sitebricks.channel;

/**
 * @author [email protected] (Dhanji R. Prasanna)
 */
public interface Switchboard {
  public static final String SB_SOCKET_ID = "SBSocketId";

  Channel named(String name);

  public static interface Channel {
    String getName();

     void send(E reply);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy