org.spincast.plugins.routing.IWebsocketRouteFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-plugins-routing Show documentation
Show all versions of spincast-plugins-routing Show documentation
The default Spincast Routing plugin
The newest version!
package org.spincast.plugins.routing;
import java.util.List;
import org.spincast.core.exchange.IRequestContext;
import org.spincast.core.routing.IHandler;
import org.spincast.core.websocket.IWebsocketContext;
import org.spincast.core.websocket.IWebsocketController;
import org.spincast.core.websocket.IWebsocketRoute;
import com.google.inject.assistedinject.Assisted;
public interface IWebsocketRouteFactory, W extends IWebsocketContext>> {
public IWebsocketRoute createRoute(@Assisted("id") String id,
@Assisted("path") String path,
@Assisted("before") List> beforeFilters,
@Assisted("controller") IWebsocketController websocketController);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy