Yevhenii Nadtochii
Yevhenii Nadtochii
I want to split main view in tabs with vertical tabs-switching -> I use drawer with several items, one of which is expanded by default and multiSelect = false. It...
It seems, the stack trace was supposed to be in that text box. And may be it would be better to have exception message printed in both window's title and...
A shown window fails to become active and gain focus. The window is created with `alwaysOnTop = true`, so it should gain focus automatically as shown. But direct calls to...
This bug is a rebirth of protocolbuffers/protobuf#9152, which has already been fixed in v3.19.1. It seems the fix hasn't been delivered to the latest version. **What version of protobuf and...
In Kotlin we have the next map-instantiation functions: ``` val kotlinMap = mapOf() // LinkedHashMap val kotlinMutableMap = mutableMapOf() // LinkedHashMap val kotlinHashMap = hashMapOf() // HashMap ``` And It...
Having this: ``` private val backedMap = LinkedHashMap().asObservable() private val mapProperty: SimpleMapProperty = SimpleMapProperty(backedMap) private val map: MutableMap by mapProperty vbox(spacing = 10) { bindChildren(mapProperty) { key, value -> label("$key:...
This PR addresses #1313. The issue appears when multiple messages are dispatched from `Inbox`. Under the hood, those messages are processed as a batch, which triggers `Aggregate` to be cached...
This PR brings better documentation for the implemented gRPC services.
## Intro From a simplified point of view, dispatching of a command to an `Aggregate` consists of two main steps: 1. Sending a command to a dedicated [command-handling](https://github.com/SpineEventEngine/core-java/blob/master/server/src/main/java/io/spine/server/command/Assign.java) method. 1.1....