qbit icon indicating copy to clipboard operation
qbit copied to clipboard

The Java microservice lib. QBit is a reactive programming lib for building microservices - JSON, HTTP, WebSocket, and REST. QBit uses reactive programming to build elastic REST, and WebSockets based c...

Results 61 qbit issues
Sort by recently updated
recently updated
newest added

Hi Is there a way to send messages from qbit java code to the browser (JS) to show live datas? If yes, is there any example out there? Thank you...

https://github.com/advantageous/qbit/blob/533b3671785f238d576b02b5290c6525ed60f583/qbit/core/src/main/java/io/advantageous/qbit/queue/impl/BasicReceiveQueueManager.java#L92 https://github.com/advantageous/qbit/blob/533b3671785f238d576b02b5290c6525ed60f583/qbit/core/src/main/java/io/advantageous/qbit/queue/impl/BasicReceiveQueueManager.java#L111 Is the counter overexecuted?

if I have a queue: ``` final QueueBuilder queueBuilder = QueueBuilder.queueBuilder(); queue = queueBuilder.setArrayBlockingQueue().setBatchSize(1000).setLimit(50) .setCheckEvery(5).setCheckIfBusy(false) .setName("Bridge Queue").setPollTimeUnit(TimeUnit.MILLISECONDS) .setPollWait(50).build(); receiveQueue = queue.receiveQueue(); sendQueue = queue.sendQueue(); ``` calling queue.stop() looks like it...

ref: https://github.com/advantageous/qbit/blob/2a182f24af93b0ded9b2afba90c102632fe9592a/qbit/core/src/main/java/io/advantageous/qbit/queue/impl/BasicReceiveQueue.java#L117 public Iterable readBatch(int max) ... max is never used.

Feature request to add support for the X-Consul-Token header to enable Consul ACL support.

Calling the .pass() method results in the Qbit Consul Client using Get rather than Put http method. See https://www.consul.io/api/agent/check.html section regarding TTL checks. File affected: AgentEndpoint.java Test case: for (ServiceHealth...

I am a designer. I see QBit does not have a Logo. let me participate in developing QBit in the future. I want to design a Logo for QBit. allow...

Hello, I designed a logo for Qbit. If you like it, I will give you this logo as a gift. ![colors](https://user-images.githubusercontent.com/36298335/37374779-6acafc24-2725-11e8-8ae0-a9ad7b397487.jpg) ![logotype](https://user-images.githubusercontent.com/36298335/37374780-6afe6db6-2725-11e8-9faa-961a6ce44629.jpg) ![view2](https://user-images.githubusercontent.com/36298335/37374781-6b2abd94-2725-11e8-9c2b-07d6ec91761d.jpg)

Sorry, if I missed this in the documentation. I followed the hello word tutorial to get the basic service skeleton setup. I can access the Swagger spec, that gets generated...

Request mapping only takes into account the number of path chunks (the number of slashes in the url) when finding the corresponding java method to call. It means that the...