RFR: 8003246: Add Supplier to ThreadLocal (original) (raw)

Akhil Arora akhil.arora at oracle.com
Thu Dec 6 18:00:41 UTC 2012


On 12/06/2012 09:38 AM, Doug Lea wrote:

Much better; thanks! As a minor matter, it probably makes sense to give that class a name. Even though it is a non-public static class, the name will be seen here and there by debuggers, stacktraces, etc, and the default "$" name will be confusing. As in:

static final class SuppliedThreadLocal extends ThreadLocal .. public static ThreadLocal withInitial(Supplier<? extends T> supplier) { return new SuppliedThreadLocal(supplier); }

http://cr.openjdk.java.net/~akhil/8003246.2/webrev/

Thanks



More information about the core-libs-dev mailing list