Uses of Interface
com.microsoft.azure.eventhubs.EventData
-
Packages that use EventData Package Description com.microsoft.azure.eventhubs com.microsoft.azure.eventhubs.impl -
-
Uses of EventData in com.microsoft.azure.eventhubs
Methods in com.microsoft.azure.eventhubs that return EventData Modifier and Type Method Description static EventDataEventData. create(byte[] data)Construct EventData to Send to EventHubs.static EventDataEventData. create(byte[] data, int offset, int length)Construct EventData to Send to EventHubs.static EventDataEventData. create(ByteBuffer buffer)Construct EventData to Send to EventHubs.Methods in com.microsoft.azure.eventhubs that return types with arguments of type EventData Modifier and Type Method Description CompletableFuture<Iterable<EventData>>PartitionReceiver. receive(int maxEventCount)Receive a batch ofEventData's from an EventHub partitiondefault Iterable<EventData>PartitionReceiver. receiveSync(int maxEventCount)Synchronous version ofPartitionReceiver.receive(int).Methods in com.microsoft.azure.eventhubs with parameters of type EventData Modifier and Type Method Description CompletableFuture<Void>EventHubClient. send(EventData data)SendEventDatato EventHub.CompletableFuture<Void>EventHubClient. send(EventData eventData, String partitionKey)Send an 'EventDatawith a partitionKey' to EventHub.CompletableFuture<Void>PartitionSender. send(EventData data)SendEventDatato a specific EventHub partition.default voidEventHubClient. sendSync(EventData data)Synchronous version ofEventHubClient.send(EventData).default voidEventHubClient. sendSync(EventData eventData, String partitionKey)Synchronous version ofEventHubClient.send(EventData, String).default voidPartitionSender. sendSync(EventData data)Synchronous version ofPartitionSender.send(EventData)Api.booleanEventDataBatch. tryAdd(EventData eventData)Add'sEventDatatoEventDataBatch, if permitted by the batch's size limit.Method parameters in com.microsoft.azure.eventhubs with type arguments of type EventData Modifier and Type Method Description voidPartitionReceiveHandler. onReceive(Iterable<EventData> events)user should implement this method to specify the action to be performed on the received events.CompletableFuture<Void>EventHubClient. send(Iterable<EventData> eventDatas)Send a batch ofEventDatato EventHub.CompletableFuture<Void>EventHubClient. send(Iterable<EventData> eventDatas, String partitionKey)Send a 'batch ofEventDatawith the same partitionKey' to EventHub.CompletableFuture<Void>PartitionSender. send(Iterable<EventData> eventDatas)SendEventDatato a specific EventHub partition.default voidEventHubClient. sendSync(Iterable<EventData> eventDatas)Synchronous version ofEventHubClient.send(Iterable).default voidEventHubClient. sendSync(Iterable<EventData> eventDatas, String partitionKey)Synchronous version ofEventHubClient.send(Iterable, String).default voidPartitionSender. sendSync(Iterable<EventData> eventDatas)Synchronous version ofPartitionSender.send(Iterable). -
Uses of EventData in com.microsoft.azure.eventhubs.impl
Classes in com.microsoft.azure.eventhubs.impl that implement EventData Modifier and Type Class Description classEventDataImplMethods in com.microsoft.azure.eventhubs.impl that return types with arguments of type EventData Modifier and Type Method Description CompletableFuture<Iterable<EventData>>ReceivePump.IPartitionReceiver. receive(int maxBatchSize)Methods in com.microsoft.azure.eventhubs.impl with parameters of type EventData Modifier and Type Method Description intEventDataImpl. compareTo(EventData other)CompletableFuture<Void>EventHubClientImpl. send(EventData data)CompletableFuture<Void>EventHubClientImpl. send(EventData eventData, String partitionKey)Method parameters in com.microsoft.azure.eventhubs.impl with type arguments of type EventData Modifier and Type Method Description CompletableFuture<Void>EventHubClientImpl. send(Iterable<EventData> eventDatas)CompletableFuture<Void>EventHubClientImpl. send(Iterable<EventData> eventDatas, String partitionKey)
-