Interface HttpCall.RequestStream

  • Enclosing class:
    HttpCall<V>

    public static interface HttpCall.RequestStream
    A request stream which can have HttpData of the request body written to it.
    • Method Detail

      • tryWrite

        boolean tryWrite​(com.linecorp.armeria.common.HttpData obj)
        Writes the HttpData to the stream. Returns false if the stream has been aborted (e.g., the request timed out while writing), or true otherwise.