• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

JaidenAshmore / java-dynamic-sqs-listener / #1517
96%
7.x: 96%

Build:
Build:
LAST BUILD BRANCH: 410_pull_out_spring_boot_api
DEFAULT BRANCH: 7.x
Ran 31 Jul 2020 11:27PM UTC
Jobs 1
Files 102
Run time 22s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
#1517

push

github-actions

web-flow
refs #259: Add batching and prefetching queue listeners into Kotlin DSL (#260)

This adds the ability to create the equivalent containers as the
@QueueListener and @PrefetchingQueueListener in the Kotlin Core DSL.

For example:

```kotlin
val container = batchingMessageListener("identifier", sqsAsyncClient,
"url") {
    concurrencyLevel = { 10 }
    batchSize = { 5 }
    batchingPeriod =  { Duration.ofSeconds(5) }

    processor = lambdaProcessor {
        method { message ->
            log.info("Message: {}", message.body())
        }
    }
}
```

or

```kotlin
val container = prefetchingMessageListener("identifier", sqsAsyncClient,
"url") {
    concurrencyLevel = { 2 }
    desiredPrefetchedMessages = 5
    maxPrefetchedMessages = 10

    processor = lambdaProcessor {
        method { message ->
            log.info("Message: {}", message.body())
        }
    }
}
```

1589 of 1659 relevant lines covered (95.78%)

0.96 hits per line

Jobs
ID Job ID Ran Files Coverage
1 #1517.1 31 Jul 2020 11:27PM UTC 0
95.78
Source Files on build #1517
Detailed source file information is not available for this build.
  • Back to Repo
  • Build #1517
  • c2f79e90 on github
  • Prev Build on 4.x
  • Next Build on 4.x
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc