2014-10-22 18:38:44 +02:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
|
|
|
|
|
|
|
public interface OnFileTransmissionStatusChanged {
|
2015-10-12 12:36:54 +02:00
|
|
|
void onFileTransmitted(DownloadableFile file);
|
2014-10-22 18:38:44 +02:00
|
|
|
|
2015-10-12 12:36:54 +02:00
|
|
|
void onFileTransferAborted();
|
2014-10-22 18:38:44 +02:00
|
|
|
}
|