ᴀɴᴛᴏɴ
ᴀɴᴛᴏɴ
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) { } } ```
Features: - HttpClientRequest & HttpClientResponse & HttpServerRequest & HttpServerResponse API refactoring and standardization - API Breaking changes
Features: - Kotlin Sync Client and Sync Server added - Existing modes API parameter breaking change Closes (#170) Mode parameter change: Before ``` java_client - non-reactive Java client java_server -...
Camunda 8 Zeebe Worker module added ```java @Component public final class Step2JobWorker { private final Logger logger = LoggerFactory.getLogger(getClass()); @JobWorker("bar") public Map handle(JobContext context) { logJob(logger, context); return Map.of("someResult", "42");...
Features: - S3 Client declarative client module added - AWS S3 Client support added - Minio S3 Client support added ```java @S3.Client("my") public interface SyncS3Client { @S3.Get("pre-{key}") S3Object getObject(String key);...