summaryrefslogtreecommitdiff
path: root/cask
Commit message (Collapse)AuthorAgeFilesLines
* 0.3.60.3.6Li Haoyi2019-11-078-673/+12
|
* 0.3.50.3.5Li Haoyi2019-11-051-1/+3
|
* 0.3.40.3.4Li Haoyi2019-11-051-1/+7
|
* add BatchActor unit test and docsLi Haoyi2019-11-041-0/+59
|
* actor readme pipelineLogLi Haoyi2019-11-031-0/+58
|
* actor log readmeLi Haoyi2019-11-031-0/+74
|
* add debouncing state machine to docs and unit testsLi Haoyi2019-11-031-0/+48
|
* Basic readme for Cask actorsLi Haoyi2019-11-031-1/+3
|
* Flesh out `BatchActor.scala` into its own module, `cask.Actor`. Add the ↵Li Haoyi2019-11-039-64/+430
| | | | first unit test for an asynchronous logging actor
* Fix StateMachine to properly inherit from BatchActorLi Haoyi2019-10-132-5/+3
| | | | Remove WsClient.close
* fixes for WsClientLi Haoyi2019-10-131-3/+5
|
* Add a simple `StateMachineActor` classLi Haoyi2019-10-131-1/+10
|
* avoid redundantly completing promise in WsClient connection failureLi Haoyi2019-10-131-3/+1
|
* bump Scala to 2.13.1Li Haoyi2019-10-101-1/+1
|
* Statically check the set of decorators applied to each endpoint methodLi Haoyi2019-10-093-13/+77
|
* Genericize `EndpointMetadata#decorators`Li Haoyi2019-10-091-1/+1
|
* Convert `Decorator#OuterReturned` into a type parameterLi Haoyi2019-10-098-27/+24
|
* Add test to verify `compress` decorator is properly passing through ↵Li Haoyi2019-10-092-5/+6
| | | | irrelevant results
* Allow `staticFiles` and `staticFiles` to specify headers to respond with ↵Li Haoyi2019-10-092-20/+17
| | | | (e.g. for caching and expiration)
* Allow `cask.decorators.compress` to skip results it doesn't care aboutLi Haoyi2019-10-093-2/+7
|
* Genericize `cask.Main#decorators` and `cask.Routes#decorators` to allow ↵Li Haoyi2019-10-093-6/+6
| | | | other non-http-response results
* upgrade to quill 3.4.10, re-enable database examplesLi Haoyi2019-10-091-1/+4
|
* Update WsClient.scalalihaoyi-patch-1Li Haoyi2019-09-191-0/+2
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-1/+1
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-1/+1
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-1/+3
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-1/+1
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-3/+7
|
* Update WsClient.scalaLi Haoyi2019-09-191-2/+1
|
* Update WebsocketClientImpl.scalaLi Haoyi2019-09-191-2/+4
|
* Merge pull request #14 from lihaoyi-databricks/masterLi Haoyi2019-09-1611-42/+220
|\ | | | | Provide a simple builtin websocket client in `cask.WsClient`
| * Provide a simple builtin websocket client in `cask.WsClient`Li Haoyi2019-09-1612-45/+221
| | | | | | | | | | | | Harmonize the actor-based APIs of `cask.WsClient`/`cask.WsHandler`/`cask.WsActor`, letting them share the same set of `cask.Ws` events The default implementation of `cask.WsClient` on the JVM spawns one thread per connection, and doesn't really scale to large numbers of connections. For now we just continue using AsyncHttpClient in the load tests. Wrapping AsyncHttpClient in a nice API is TBD
* | 0.2.80.2.8Li Haoyi2019-09-163-4/+1
|/
* cross-build cask.util for Scala.jsLi Haoyi2019-09-162-0/+0
|
* 0.2.60.2.6Li Haoyi2019-09-161-0/+1
|
* Break up `Router.scala` into a `router/` folder with multiple filesLi Haoyi2019-09-1619-416/+426
|
* re-expose handleNotFound and handleEndpointError, update docsLi Haoyi2019-09-151-16/+20
|
* Move logic from `Main` class into companion object, to clean up user-facing ↵Li Haoyi2019-09-151-80/+92
| | | | API for inheritance
* Move `internal.BatchActor` to `util.BatchActor`Li Haoyi2019-09-153-5/+8
|
* Sketch out a standard `cask.Logger` interface and standardize dependency ↵Li Haoyi2019-09-156-15/+46
| | | | injection via case class implicits
* Break circular dependency by splitting `RouteEndpointMetadata` into its own fileLi Haoyi2019-09-155-84/+88
|
* Move recursive Decorator-processing logic into `Decorator.invoke`, document ↵Li Haoyi2019-09-154-41/+63
| | | | | | what it does Avoid reversing annotations list in Router.scala only to reverse the final results again when binding the arguments to `EntryPoint.invoke`
* First pass at providing a convenient API for handling websocketsLi Haoyi2019-09-144-3/+128
|
* Rename `BaseDecorator` -> `Decorator`, `Decorator` -> `RawDecorator`, ↵Li Haoyi2019-09-1411-52/+54
| | | | `BaseEndpoint` -> `Endpoint`, `Endpoint` -> `HttpEndpoint`
* Make `Input` a type param tooLi Haoyi2019-09-149-35/+26
|
* `InnerResponse` is now a type param instead of member, allowing better error ↵Li Haoyi2019-09-1410-28/+25
| | | | | | | | messages through `cask.internal.Conversion`: ``` Cannot return java.io.ByteArrayInputStream as a cask.model.Response[cask.endpoints.JsonData] ```
* `cask.Response` is now covariantLi Haoyi2019-09-144-19/+41
|
* .Li Haoyi2019-09-1411-71/+144
|
* 0.2.1: support for Scala 2.13.0. Some tests using Quill disabled until they ↵0.2.1Li Haoyi2019-06-157-11/+11
| | | | | | | | | | get on 2.13 as well Small typos There were pair of really inconsequential typos in the documentation. .
* Upgrade upickle -> 0.7.1Grant Gavares2018-11-211-4/+5
| | | | | | | Upgrade: * upickle -> 0.7.1 * quill-jdbc -> 2.6.0 * utest -> 0.6.6