Back to project page volley.
The source code is released under:
Apache License
If you think the Android project volley listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.volley.toolbox.multipart; /* w w w .j av a 2s. co m*/ import java.io.IOException; import java.io.OutputStream; /** * @author <a href="mailto:vit at cleverua.com">Vitaliy Khudenko</a> */ public interface Part { public long getContentLength(Boundary boundary); public void writeTo(final OutputStream out, Boundary boundary) throws IOException; }