Package video.api.client.api.upload
Interface IProgressiveUploadSession
-
- All Known Implementing Classes:
VideosApi.UploadProgressiveSession,VideosApi.UploadWithUploadTokenProgressiveSession
public interface IProgressiveUploadSession
-
-
Method Summary
-
-
-
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
-
uploadPartWithHttpInfo
ApiResponse<Video> uploadPartWithHttpInfo(File part, boolean isLastPart, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
uploadPartWithHttpInfo
ApiResponse<Video> uploadPartWithHttpInfo(File part, Integer partId, boolean isLastPart, UploadPartProgressListener uploadProgressListener) throws ApiException
- Throws:
ApiException
-
-