Thanks for your response Didier. On Friday, March 10, 2017 at 7:05:19 PM UTC+1, Didier wrote: > > But just to clarify, Java's ThreadLocal is an implementation of dynamic > scoping. >
This is how I see it: A ThreadLocal is an object instance. It ensures a different object for each different thread. It implements automatic thread-confinement. In particular, a ThreadLocal may be referenced by different vars. You may move its reference around the program and it will refer to the same object by the same thread. Scoping refers to the ability to refer to a var. Dynamic scoping lets you use a var that should be declared by one of the functions up in the call stack. It implements an implicitly injected parameter to a function. A function that uses a dynamic var will see a different var depending on the last function in the call stack that defined it. > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.