com.volcengine.helper.VodUploadProgressEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.helper;
public class VodUploadProgressEvent {
private final long byteSize;
private final VodUploadProgressEventType eventType;
public VodUploadProgressEvent(VodUploadProgressEventType eventType) {
this(eventType, 0L);
}
public VodUploadProgressEvent(VodUploadProgressEventType eventType, long byteSize) {
this.byteSize = byteSize;
this.eventType = eventType;
}
public long getByteSize() {
return byteSize;
}
public VodUploadProgressEventType getEventType() {
return eventType;
}
@Override
public String toString() {
return "VodUploadProgressEvent{" +
"byteSize=" + byteSize +
", eventType=" + eventType +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy