org.apache.http.entity.ContentProducer.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.http.entity.ContentProducer.java

Source

package org.apache.http.entity;

import java.io.IOException;
import java.io.OutputStream;

public interface ContentProducer {
    void writeTo(OutputStream outputStream) throws IOException;
}