Grant
Grant
We provide an API to our users that allow them to subscribe to events via EventBus or use the more traditional delegate/listener pattern. Behind the scenes, our listeners just subscribe...
Assuming I've identified an actual bug in the impl, I went ahead and made a locally modified version which seems to solve my issue: ```scala class MyParametricTypeNamesTransformer extends OutputTransformer with...
Sure, I suppose I was worried because there is the explicit test to ensure that arrays are ignored in [ParametricTypeNamesTransformerSpec](https://github.com/iheartradio/play-swagger/blob/8e9c9898a0fc56d87b460c1862dcf0ffad14d6f5/core/src/test/scala/com/iheart/playSwagger/ParametricTypeNamesTransformerSpec.scala). I'll create a PR.
It seems like the source of the problem is using an `Iterable[Metadata]` in the `Listing` class. Changing to `Seq[Metadata]` resolves the problem and all the swagger class definitions are generated.
As another example using smithy4s, I can create typesafe reverse routes by writing a bit of code. Assume a service named `MyService` with an endpoint `ListItems`. Smithy4s generates an object...
@okumin I'm concerned that `asyncWriteMessages` can't safely be written using asynchronous database writes. Since `AsyncWriteJournal` is an actor, writing a message `M1` to the database asynchronously can result in a...
I can't find any documentation that seems to indicate that `asyncWriteMessages` will not be invoked concurrently for the same persistence_id and it's not obvious to me how that would be...
I realize this issue is 10 months old but I just ran into it as well. It seems that [visionmedia/sass.js](https://github.com/visionmedia/sass.js/issues) is now returning a 404. Is nodefront still using this...