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