Rohit Kulshreshtha

Results 31 issues of Rohit Kulshreshtha

Looking at the example provided in the `README.md`: ``` val obj = json { repeat(3) { put("field$it", it * 2) } } ``` It throws a `java.util.EmptyStackException`. There seems to...

Addresses #1187. Wall-clock time isn't monotonic, but that's expected to be understood.

The ability to plug clock implementations in Hydroflow will benefit deterministic (unit) testing. The current implementation binds to `Instant::now()`.

enhancement
core api

I need wall clock time for a HLC implementation. The current implementation of `Context:: current_tick_start` uses `std::time::instant` as the type. Should we add another field to represent wall clock time?...

Updated [hydroflow template](https://github.com/hydro-project/hydroflow-template/pull/14) simplifies server and client addresses handling. This issue is to find existing hydroflow examples that use the existing style server & client addresses and update the examples...

documentation
good first issue

The networking examples rely on the hydro-flow template to explain networking primitives in hydroflow. When the template is updated, the examples become stale. This issue is to make the networking...

documentation

In the code snippet below, I was expecting a defer_tick to be required at `EXPECTED A DEFER TICK HERE?`, but the code compiles without it. Unclear what the expected behavior...

bug
hydroflow syntax

1. Documentation on the help parameters. 2. Not needing ports to be copy-pasted across clients - just makes running the example easier, without loss of functionality. We'll a well known...

documentation

At the moment, there aren't examples of Hydroflow graph reuse. The Anna application is being built as a stand-alone application at the moment. Should it be converted to a library?...

enhancement