Interface RequestOutput


public interface RequestOutput
Request output API.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    write(byte[] bytes)
    Appends the bytes to the binary output content.
    void
    write(byte[] bytes, int offset, int length)
    Appends the bytes to the binary output content.
    void
    write(char[] chars)
    Appends the characters to the text output content.
    void
    write(char[] chars, int offset, int length)
    Appends the charactes to the text output content.
    void
    Appends the String to the text output content.
    void
    write(String str, int offset, int length)
    Appends the String to the text output content.
    void
    Appends the String to the text output content, followed by a line feed character.