Joel Feinstein
Joel Feinstein
I've been bitten by [this](https://stackoverflow.com/questions/60145241/axon-no-handler-found-for-query-when-returning-response-with-generic) issue on multiple occasions. Here is a test to demonstrate: ``` class Foo fun makeFoo(): List = emptyList() @Test fun `should match`() { assertTrue( MultipleInstancesResponseType(Foo::class.java).matches(...
This function does not require an `EntityClass` to accomplish the transform. Placing this outside of the `EntityClass` allows consumers to define transforms as extension functions. For example: ``` fun Column.asString()...
Please let me know if there is a better place to address usage questions. I am trying to take an application beyond basic boilerplate by adding both multi-tenancy and pagination/sorting....
I would like to track the history of an object with some sensitive fields (like a password). The value of the change is irrelevant but who changed it and the...
This series of commits adds the capability to use a shared memory region instead of a file. This functionality can be used to quickly transmit large amounts of data between...
Bug or feature? You also can't ged rid of the leading `/`.
This commit implements the functionality I described in [this](https://github.com/go-martini/martini/issues/322) "issue". It supports mapping types to handlers, which are executed to return the desired value. To maintain backwards compatibility, the handler...