Package video.api.client.api.upload
Interface IProgressiveUploadSession
-
- All Known Implementing Classes:
VideosApi.UploadProgressiveSession,VideosApi.UploadWithUploadTokenProgressiveSession
public interface IProgressiveUploadSession
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetToken()StringgetVideoId()VideouploadLastPart(File part)VideouploadLastPart(File part, Integer partId, UploadPartProgressListener uploadProgressListener)VideouploadLastPart(File part, UploadPartProgressListener uploadProgressListener)VideouploadPart(File part)VideouploadPart(File part, boolean isLastPart, UploadPartProgressListener uploadProgressListener)VideouploadPart(File part, Integer partId, boolean isLastPart, UploadPartProgressListener uploadProgressListener)VideouploadPart(File part, Integer partId, UploadPartProgressListener uploadProgressListener)VideouploadPart(File part, UploadPartProgressListener uploadProgressListener)
-
-
-
Method Detail
-
getVideoId
String getVideoId()
-
getToken
String getToken()
-
uploadPart
Video uploadPart(File part) throws ApiException
- Throws:
ApiException
-
uploadLastPart
Video uploadLastPart(File part) throws ApiException
- Throws:
ApiException
-
uploadPart
Video uploadPart(File part, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadLastPart
Video uploadLastPart(File part, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadPart
Video uploadPart(File part, boolean isLastPart, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadPart
Video uploadPart(File part, Integer partId, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadLastPart
Video uploadLastPart(File part, Integer partId, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadPart
Video uploadPart(File part, Integer partId, boolean isLastPart, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
-