All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.kotlin.amqp.AmqpReceiverOptions.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
/*
 * Copyright 2019 Red Hat, Inc.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * The Apache License v2.0 is available at
 * http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.kotlin.amqp

import io.vertx.amqp.AmqpReceiverOptions

/**
 * A function providing a DSL for building [io.vertx.amqp.AmqpReceiverOptions] objects.
 *
 * Configures the AMQP Receiver.
 *
 * @param linkName 
 * @param dynamic  Sets whether the Source terminus to be used should specify it is 'dynamic', requesting the peer creates a node and names it with a generated address. 

The address provided by the peer can then be inspected using the [io.vertx.amqp.AmqpReceiver] method on the [io.vertx.amqp.AmqpReceiver] received once opened. * @param qos Sets the local QOS config. * @param capabilities Sets the list of capabilities to be set on the receiver source terminus. * @param capabilitys Adds a capability to be set on the receiver source terminus. * @param durable Sets the durability.

Passing true sets the expiry policy of the source to NEVER and the durability of the source to UNSETTLED_STATE. * @param maxBufferedMessages Sets the max buffered messages. This message can be used to configure the initial credit of a receiver. * @param autoAcknowledgement Sets the auto-acknowledgement. When enabled (default), the messages are automatically acknowledged. If set to false, the messages must be acknowledged explicitly using [io.vertx.amqp.AmqpMessage], [io.vertx.amqp.AmqpMessage] and [io.vertx.amqp.AmqpMessage]. * @param selector Sets a message selector string. Used to define an "apache.org:selector-filter:string" filter on the source terminus, using SQL-based syntax to request the server filters which messages are delivered to the receiver (if supported by the server in question). Precise functionality supported and syntax needed can vary depending on the server. * @param noLocal Sets whether this receiver should not receive messages that were sent using the same underlying connection. Used to determine whether to define an "apache.org:no-local-filter:list" filter on the source terminus, requesting that the server filters which messages are delivered to the receiver so that they do not include messages sent on the same underlying connection (if supported by the server in question). * *

* NOTE: This function has been automatically generated from the [io.vertx.amqp.AmqpReceiverOptions original] using Vert.x codegen. */ fun amqpReceiverOptionsOf( linkName: String? = null, dynamic: Boolean? = null, qos: String? = null, capabilities: Iterable? = null, capabilitys: Iterable? = null, durable: Boolean? = null, maxBufferedMessages: Int? = null, autoAcknowledgement: Boolean? = null, selector: String? = null, noLocal: Boolean? = null): AmqpReceiverOptions = io.vertx.amqp.AmqpReceiverOptions().apply { if (linkName != null) { this.setLinkName(linkName) } if (dynamic != null) { this.setDynamic(dynamic) } if (qos != null) { this.setQos(qos) } if (capabilities != null) { this.setCapabilities(capabilities.toList()) } if (capabilitys != null) { for (item in capabilitys) { this.addCapability(item) } } if (durable != null) { this.setDurable(durable) } if (maxBufferedMessages != null) { this.setMaxBufferedMessages(maxBufferedMessages) } if (autoAcknowledgement != null) { this.setAutoAcknowledgement(autoAcknowledgement) } if (selector != null) { this.setSelector(selector) } if (noLocal != null) { this.setNoLocal(noLocal) } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy