Package 

Interface FrameProcessor

    • Method Summary

      Modifier and Type Method Description
      abstract void process(@NonNull() Frame frame) Processes the given frame.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • process

        @WorkerThread() abstract void process(@NonNull() Frame frame)

        Processes the given frame. The frame will hold the correct values only for theduration of this method. When it returns, the frame contents will be replaced.To keep working with the Frame in an async manner, please use freeze,which will return an immutable Frame. In that case you can pass / hold the frame foras long as you want, and then release its contents using release.

        Parameters:
        frame - the new frame