swim icon indicating copy to clipboard operation
swim copied to clipboard

Full stack application platform for building stateful microservices, streaming APIs, and real-time UIs

Results 46 swim issues
Sort by recently updated
recently updated
newest added

From the logs of one of the live apps that we have when a web crawler hits it: ``` error: expected carriage return, but found ',' --> :11:20 | 11...

C-bug

Fixes/improvements for downlinks not responding after heavy usage and out-of-order value lane updates. https://github.com/swimos/swim/issues/45, https://github.com/swimos/swim/issues/36

Corresponding to https://github.com/swimos/swim/issues/5

A library of combinators to transform streams of data from Swim lanes. There are two main components: 1. A fluent API for constructing combinator graphs, [found here](https://github.com/swimos/swim/tree/feature/combinators/swim-system-java/swim-core-java/swim.dataflow/src/main/java/swim/dataflow/graph). The primary interfaces...

C-enhancement

Refer issue #8 Check out the test case [here](https://github.com/swimos/swim/blob/feature/http-downlink/swim-system-java/swim-mesh-java/swim.client/src/test/java/swim/client/ClientRuntimeSpec.java#L103-L141) for usage. Some open questions 1. Current semantics is `client.downlinkHttp().requestUri(..).open()` triggers the `RemoteHttpHostClient` to initiate connections and poll the `requestUri`. Should...

Fixed intermittently failing test Added tests Noticed the following: - didConnect callback is called twice - EventDownlinks have willCommand but not onCommand/didCommand? - willUplink and willLink do not get called...

The callbacks of downlinks opened using the swim client are being executed multiple times. Tested with a map downlink with `didUpdate` callback and a value downlink with a `didSet` callback.

C-bug

Similar to #67 but with a slightly different output, potentially due to #65. Example: BasicPlane.java ```java public class BasicPlane extends AbstractPlane { @SwimRoute("/swim") AgentRoute unitAgentType; public static void main(String[] args)...

C-bug

Using the same example from #67 the join map lane will keep executing the same `didUpdate` callback indefinitely every 90 seconds. Input ``` @command(node:"/unit/foo", lane:"addItem")"foo" ``` Initial Output: ``` join...

C-bug