aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/ConnectionLogger.java
blob: 81932935b3e85a917d6b5e323689e843ed485633 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.libmailcore;

/** Callbacks interface for the connection logger. */
public interface ConnectionLogger {
    /**
        Called when a new connection logs is added.
        @param type has one of the value of ConnectionLogType.
        @see com.libmailcore.ConnectionLogType
    */
    void log(long connectionID, int type, byte[] data);
}