end abstract method

bool end(
  1. T object,
  2. Color color,
  3. Size size
)

Returning true will keep the object, false will discard it.

Useful for pan/zoom where you want to fulfill the contract, but not draw anything.

NOTE: Will not be called if start() returned a Future.

Implementation

bool end(
  T object,
  Color color,
  Size size,
);