value abstract method

Object? value(
  1. AggregateContext<V> context
)

Obtain the current aggregate in the window.

This is similar to finalize, but shouldn't be used to clean up resources as subsequent calls may happen with the same context.

Implementation

Object? value(AggregateContext<V> context);