aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/ConnectionLogger.java
blob: cb4973ca053c428dac9ef26024603a2f2c347bfa (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 param has one of the value of ConnectionLogType.
        @see ConnectionLogType.
    */
    void log(long connectionID, int type, byte[] data);
}