FileUploadNotificationReceiver Class

Definition

public class FileUploadNotificationReceiver extends Receiver
Inheritance
java.lang.Object
FileUploadNotificationReceiver

Inherited Members

Receiver.closeAsync() Receiver.openAsync() Receiver.receiveAsync() Receiver.receiveAsync(long timeoutSeconds) java.lang.Object.clone() java.lang.Object.equals(java.lang.Object) java.lang.Object.finalize() java.lang.Object.getClass() java.lang.Object.hashCode() java.lang.Object.notify() java.lang.Object.notifyAll() java.lang.Object.toString() java.lang.Object.wait() java.lang.Object.wait(long) java.lang.Object.wait(long,int)

Methods

close()

Close AmqpReceive object

closeAsync()

Async wrapper for close() operation

open()

Open AmqpReceive object

openAsync()

Async wrapper for open() operation

receive()

Receive FileUploadNotification with default timeout QoS for receiving file upload notifications is at least once This function is synchronized internally so that only one receive operation is allowed at a time. In order to do more receive operations at a time, you will need to instantiate another FileUploadNotificationReceiver instance.

receive(long timeoutMs)

Receive FileUploadNotification with specific timeout QoS for receiving file upload notifications is at least once This function is synchronized internally so that only one receive operation is allowed at a time. In order to do more receive operations at a time, you will need to instantiate another FileUploadNotificationReceiver instance.

receiveAsync()

Async wrapper for receive() operation with default timeout QoS for receiving file upload notifications is at least once

receiveAsync(long timeoutMs)

Async wrapper for receive() operation with specific timeout QoS for receiving file upload notifications is at least once

Applies to