All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.datahub.client.http.interceptor.compress.RequestBodyWrapper Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.http.interceptor.compress;

import okhttp3.RequestBody;

public class RequestBodyWrapper {
    private long rawSize;
    private RequestBody body;

    public RequestBodyWrapper(long rawSize, RequestBody body) {
        this.rawSize = rawSize;
        this.body = body;
    }

    public long getRawSize() {
        return rawSize;
    }

    public RequestBody getBody() {
        return body;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy