kora
kora copied to clipboard
Move Kora documentation to new engine like [docusaurus](https://docusaurus.io/) with more feature set Need to investigate first for best engine possible for desired feature set: - Separate documentation for different Kora...
Rewrite most of existing Kora documentation with up-to-date examples, features to Russian
Publish separate repository with Kora Examples for all core components that can be used by newbie as simple guide for developing, trying, testing Kora features and a more interactive way...
Feature will allow users to create custom methods that are analogs to `@KafkaListener` ones but for producer This will allow for easier use of `@KafkaPubisher` with ability to specify configuration...
Features will allow to receive Kafka Headers for custom methods in `@KafkaListener` ```java public class KafkaListenerClass { @KafkaListener("test.config.path") public void process(String key, String value, Headers headers) { } } ```
Assume I have the following type hierarchy: ```kt interface Foo { val empty val notEmpty get() = !empty } data class Bar(override val empty) : Foo ``` If I try...
When I use the following Koltin extension for AsyncHttpClient: ```kt client.execute(request) { resp -> // ... } ``` sometimes requests are failed with this error: ``` ru.tinkoff.kora.http.client.common.HttpClientConnectionException: io.netty.channel.StacklessClosedChannelException at ru.tinkoff.kora.http.client.async.AsyncHttpClient.lambda$execute$1(AsyncHttpClient.java:39)...
I generated POST method from openapi and if I try to send a request with body "null" I get the following response: ``` HTTP/1.1 400 Bad Request Connection: keep-alive Server:...
At the moment Kora OpenAPI Generator supports the following modes: - java_client - non-reactive Java client - java_server - non-reactive Java server - reactive_client - reactive Java client (Project Reactor)...
Features: - HttpClientRequest & HttpClientResponse & HttpServerRequest & HttpServerResponse API refactoring and standardization - API Breaking changes