diff --git a/Home.md b/Home.md index 83d2151..c2ec4b0 100644 --- a/Home.md +++ b/Home.md @@ -9,6 +9,7 @@ - Change notifications via weakly-referenced listeners - Thread-safe and simple to use - Singleton style with enum +- **Multiple independent named contexts** for modular, isolated data storage ## Quick Link @@ -23,6 +24,11 @@ ```java Key counterKey = Key.of("counter", Integer.class); Ctx.INSTANCE.put(counterKey, 42); + +// Working with multiple named contexts +CtxInterface orderCtx = Ctx.INSTANCE.getContext("order"); +Key orderIdKey = Key.of("orderId", String.class); +orderCtx.put(orderIdKey, "ORD123"); ```` Enjoy consistent, simple context management! \ No newline at end of file