Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CollectionSynchronizer
**GarbageDisposal** is a Java library for synchronizing Collections with a backend service, preserving the Identity Hashcode of the original entries.
**CollectionSynchronizer** is a Java library for synchronizing Collections with a backend service, preserving the Identity Hashcode of the original entries.

This library uses the [decorator pattern](https://en.wikipedia.org/wiki/Decorator_pattern) to *decorate* an object, wrapping the specified callback in a RunnableCloseable.
This library uses the [decorator pattern](https://en.wikipedia.org/wiki/Decorator_pattern) to *decorate* a Collection, keeping it up to date with a backend service (Represented as a Supplier<Collection<T>>), and using reflection to set the fields - thus preserving the Identity Hashcode of the objects, assisting with binding to UI frameworks.

## Usage Examples

Expand Down