aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/services/filetransfer/FileTransferStatusListener.java
blob: 89af5b39a6b44e08fec7df3f3162be2a5a866b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
package de.thedevstack.conversationsplus.services.filetransfer;

import de.thedevstack.conversationsplus.entities.Message;

/**
 *
 */
public interface FileTransferStatusListener {
    void onFailure(Message message, boolean delay);
    void onSuccess(Message message, boolean delay);
}