Dmitriy Barbul
Dmitriy Barbul
We found a workaround by using custom message handler. ```c# public class MyWebSocketMessageHandler : WebSocketMessageHandler { public MyWebSocketMessageHandler(WebSocket webSocket) : base(webSocket) { } public MyWebSocketMessageHandler(WebSocket webSocket, IJsonRpcMessageFormatter formatter, int sizeHint...
I'm fairly new to Akka/Pekko, so I might get it wrong. But from what I read I don't see possibility (for now) to distinguish between closing connection and modifying connection....
Hello @VETRIVEL001 I tried to replicate the issue, but I wasn't able to. I use Ditto 3.5.4. I basically did the same steps as you: - created thing with lamp...
@thjaeckle Give me some time (couple of days or so), please, I want to make another version with HashSet instead of Stream for comparison. I haven't checked performance, but I'm...
HashSet version is: ```java private static Set resolveValues(final JsonValue jsonValue, final JsonPointer jsonPointer) { final Set result = new HashSet(); resolveValuesInner(jsonValue, jsonPointer, result); return result; } private static void resolveValuesInner(...