https://github.com/aurasphere/assignables
A simple lightweight Java library to assign variables.
https://github.com/aurasphere/assignables
java joke over-optimization premature-optimization
Last synced: 15 days ago
JSON representation
A simple lightweight Java library to assign variables.
- Host: GitHub
- URL: https://github.com/aurasphere/assignables
- Owner: aurasphere
- License: mit
- Created: 2017-01-27T23:35:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-07T23:12:06.000Z (almost 6 years ago)
- Last Synced: 2025-03-30T06:02:09.670Z (over 1 year ago)
- Topics: java, joke, over-optimization, premature-optimization
- Language: Java
- Size: 77.1 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.paypal.com/donate/?cmd=_donations&business=8UK2BZP2K8NSS)
# Assignables
A simple lightweight Java library to assign variables.
## Sample usage:
Assignable a = new Assignable();
Assignables.assign(5).into(a).parallelProcessing().timeout(5000).end().withAssignmentPolicy(new MD5AssignmentPolicy());
System.out.println(a);
The output of this program will be the Hash of 5 using MD5 as you'd expect. The assignment will be performed on a separate Thread with a timeout of 5 seconds.
This library is a joke but if you find an actual use for it, good for you!
Browse javadoc here: https://aurasphere.github.io/assignables/