Initializers for AOTed deftype classes

2012-04-01 Thread Marshall T. Vandegrift
Hi, I'm trying to define some bits of Hadoop glue using `deftype` from Clojure. I'm using Leiningen to produce an AOT-complied JAR of the generated classes. At runtime, Hadoop uses reflection to load classes specified by name in (non-code) configuration. Hadoop is able to locate and instantiate

Re: Initializers for AOTed deftype classes

2012-04-03 Thread Marshall T. Vandegrift
"Marshall T. Vandegrift" writes: > So, is this entirely expected behavior? Or am I missing something > which would make initializing the defining namespace happen as part of > a static initializer for the AOTed `deftype` class? To answer my own question, the Clojure wiki page on the 1.2-introdu