Interface DataProcessingLayer

  • 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 DataProcessingLayer
    Represents a single data processing layer. Incoming data will be processed by process(byte[]) and its result will be returned.
    • Method Detail

      • process

        byte[] process​(byte[] data)
        Processes incoming data
        Parameters:
        data - to process
        Returns:
        processed data