This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-20 19:01:11 +03:00

14 lines
412 B
Java

package ru.redguy.tftpserver;
public interface ErrorEvent {
public void onPacketReceiveException(Exception exception);
public void onPacketReadException(Exception exception);
public void onPacketWriteException(Exception exception);
public void onClientReadException(Exception exception, TFTPread tftPread);
public void onClientWriteException(Exception exception, TFTPwrite tftPwrite);
}