kitkars

Results 7 issues of kitkars

@mrniko This is a feature request. Currently Spring supports only **_Kafka_** and **_RabbitMQ_** for cloud stream applications. There is no support for Redis Stream. https://github.com/spring-cloud/spring-cloud-stream#binder-implementations I think Redisson could implement...

feature

@mrniko **Issue:** Below code returns an empty map when there are no messages. Ideally Mono should be emitting an **_empty signal_**. Not an empty map. ``` Mono groupMono = stream.readGroup("testGroup",...

enhancement

Does spring for graphql provide a way to call another graphql-server by passing the current selection set as a query? For ex: Let's say, there is an external Graphql-Server A...

status: waiting-for-feedback
status: feedback-reminder
status: waiting-for-triage

spring for graphql works great. I came across this issue & not sure how to decode this with `HttpGraphqlClient` retrieve or execute method. `union Notification = TweetSuggestion | SomeoneLikedYourTweet |...

status: waiting-for-triage

**schem.graphqls** ``` directive @UpperCase on FIELD_DEFINITION type Query{ hello: String @UpperCase } ``` **QueryMapping** ``` @QueryMapping public Mono hello(){ return Mono.just("hello"); } ``` **SchemaDirectiveWriting** ``` @Override public GraphQLFieldDefinition onField(SchemaDirectiveWiringEnvironment environment)...

type: enhancement

This is a feature request for reactive binder. We could provide transactional support for the following type. ``` @Bean Function transform(){ return outerFlux -> outerFlux .map(innerFlux -> innerFlux.map(...)); } ```...

feature
REACTIVE-KAFKA-BINDER

autoConnect(0) seems to be broken completely. **Steps to replicate:** ``` CountDownLatch latch = new CountDownLatch(1); AtomicInteger atomicInteger = new AtomicInteger(0); Flux flux = Flux.generate(sink -> sink.next(atomicInteger.incrementAndGet())) .delayElements(Duration.ofSeconds(1)) .take(7) .cast(Integer.class) .doOnComplete(()...

status/need-investigation
area/connectableFlux