Skip to content

Instantly share code, notes, and snippets.

View SawMaineK's full-sized avatar

Saw Maine K SawMaineK

View GitHub Profile
public class CountingFileRequestBody extends RequestBody {
private static final int SEGMENT_SIZE = 2048; // okio.Segment.SIZE
private final File file;
private final ProgressListener listener;
private final String contentType;
public CountingFileRequestBody(File file, String contentType, ProgressListener listener) {
this.file = file;