org.webbitserver.handler.logging
Interface LogSink

All Known Implementing Classes:
SimpleLogSink

public interface LogSink


Method Summary
 void custom(HttpRequest request, String action, String data)
           
 void error(HttpRequest request, Throwable error)
           
 void eventSourceConnectionClose(EventSourceConnection connection)
           
 void eventSourceConnectionOpen(EventSourceConnection connection)
           
 void eventSourceOutboundData(EventSourceConnection connection, String data)
           
 void httpEnd(HttpRequest request)
           
 void httpStart(HttpRequest request)
           
 void webSocketConnectionClose(WebSocketConnection connection)
           
 void webSocketConnectionOpen(WebSocketConnection connection)
           
 void webSocketInboundData(WebSocketConnection connection, byte[] message)
           
 void webSocketInboundData(WebSocketConnection connection, String data)
           
 void webSocketInboundPing(WebSocketConnection connection, byte[] msg)
           
 void webSocketInboundPong(WebSocketConnection connection, byte[] msg)
           
 void webSocketOutboundData(WebSocketConnection connection, byte[] data)
           
 void webSocketOutboundData(WebSocketConnection connection, String data)
           
 void webSocketOutboundPing(WebSocketConnection connection, byte[] msg)
           
 void webSocketOutboundPong(WebSocketConnection connection, byte[] msg)
           
 

Method Detail

httpStart

void httpStart(HttpRequest request)

httpEnd

void httpEnd(HttpRequest request)

webSocketConnectionOpen

void webSocketConnectionOpen(WebSocketConnection connection)

webSocketConnectionClose

void webSocketConnectionClose(WebSocketConnection connection)

webSocketInboundData

void webSocketInboundData(WebSocketConnection connection,
                          String data)

webSocketInboundData

void webSocketInboundData(WebSocketConnection connection,
                          byte[] message)

webSocketInboundPing

void webSocketInboundPing(WebSocketConnection connection,
                          byte[] msg)

webSocketInboundPong

void webSocketInboundPong(WebSocketConnection connection,
                          byte[] msg)

webSocketOutboundData

void webSocketOutboundData(WebSocketConnection connection,
                           String data)

webSocketOutboundData

void webSocketOutboundData(WebSocketConnection connection,
                           byte[] data)

webSocketOutboundPing

void webSocketOutboundPing(WebSocketConnection connection,
                           byte[] msg)

webSocketOutboundPong

void webSocketOutboundPong(WebSocketConnection connection,
                           byte[] msg)

error

void error(HttpRequest request,
           Throwable error)

custom

void custom(HttpRequest request,
            String action,
            String data)

eventSourceConnectionOpen

void eventSourceConnectionOpen(EventSourceConnection connection)

eventSourceConnectionClose

void eventSourceConnectionClose(EventSourceConnection connection)

eventSourceOutboundData

void eventSourceOutboundData(EventSourceConnection connection,
                             String data)


Copyright © 2013. All Rights Reserved.