Interface ContentDecoder

All Superinterfaces:
Function<InputStream,InputStream>, UnaryOperator<InputStream>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ContentDecoder extends UnaryOperator<InputStream>
Content decoder.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ContentDecoder
    No op content decoder.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(InputStream network)
    Decode a network input stream.

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Field Details

  • Method Details