Example usage for io.vertx.core.eventbus MessageProducer writeQueueFull

List of usage examples for io.vertx.core.eventbus MessageProducer writeQueueFull

Introduction

In this page you can find the example usage for io.vertx.core.eventbus MessageProducer writeQueueFull.

Prototype

boolean writeQueueFull();

Source Link

Document

This will return true if there are more bytes in the write queue than the value set using #setWriteQueueMaxSize

Usage

From source file:examples.VertxAmqpBridgeExamples.java

License:Apache License

public void example5(MessageProducer<JsonObject> producer) {
    producer.writeQueueFull();
}