mr-swifter
mr-swifter
I have a simple table ``` table Event { handled:bool=null; } ``` when I compile with ```flatc protocol.fbs --swift --gen-mutable``` ``` public var handled: Bool? { let o = _accessor.offset(VTOFFSET.handled.v);...
Usually when reading data from network or from binary file there is no guarantee that data will be placed in memory with respect to alignment. So, trying to use such...
Hello! As I mention before I really eager to jump off from my home made implementation of Swift Kafka API and use this version and ready to contribute to make...
Transactional API is required to use Exactly Once Semantics provided by Kafka. One of the ideas how to structure this: - Make new actor `KafkaTransactionalProducer` which supports regular `KafkaProducer` API...