-
- All Implemented Interfaces:
-
com.sendbird.android.BaseChannel.BaseSendFileMessageHandler
public interface BaseChannel.SendFileMessageWithProgressHandler implements BaseChannel.BaseSendFileMessageHandler
SendFileMessage handler.This provides callback for sendFileMessage.
-
-
Method Summary
Modifier and Type Method Description abstract void
onProgress(int bytesSent, int totalBytesSent, int totalBytesToSend)
A callback for while file is being uploaded. -
-
Method Detail
-
onProgress
abstract void onProgress(int bytesSent, int totalBytesSent, int totalBytesToSend)
A callback for while file is being uploaded.
- Parameters:
bytesSent
- Bytes sent since the last time this callback was called.totalBytesSent
- Total number of bytes sent so far.totalBytesToSend
- Total bytes to send.
-
-
-
-