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);
}
}