Characteristics – Set<Characteristics> characteristics();

Finally, we indicate that our collector is IDENTITY_FINISH and CONCURRENT:

@Override
public Set<Characteristics> characteristics() {
return Set.of(IDENTITY_FINISH, CONCURRENT);
}

The code that's bundled with this book glues all the pieces of the puzzle together in a class named MelonCollector.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset