python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Using Ticker for polling an API in Go
There is an API that I need to periodically poll in order to check the status message.
ticker := time.NewTicker(time.Second * tickerWaitTimeSeconds)
defer ticker.Stop()
for range ticker.C {
r...
Don Draper
Votes: 0
Answers: 2
Doubts about concurrency in injected services in ASP.NET Core
I have a service injected into the ASP.NET dotnet framework service container. I inject this service as a Singleton, and its function is to maintain several data structures (Dictionay, List, Queue) in...
Santi
Votes: 0
Answers: 0
Can Atomic values change during an "&&" operation?
I am aware of the next scenario: (Weird formatting, I know)
private final AtomicBoolean aBoolean = new AtomicBoolean(true);
public void doSomething() {
if (
aBoolean.get() ...

Delark
Votes: 0
Answers: 1
Camel AWS SQS and concurrentConsumers
Camel version: camel-aws2-sqs-starter: 3.12.0
I am trying to use and understand concurentConsumers with a SQS queue:
from("aws2-sqs://queuexxx?concurrentConsumers=5&amazonSQSClient=#sqsClient...
Arnaud
Votes: 0
Answers: 1