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 EventData
EventData. create(byte[] data)
Construct EventData to Send to EventHubs.static EventData
EventData. create(byte[] data, int offset, int length)
Construct EventData to Send to EventHubs.static EventData
EventData. 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)
SendEventData
to EventHub.CompletableFuture<Void>
EventHubClient. send(EventData eventData, String partitionKey)
Send an 'EventData
with a partitionKey' to EventHub.CompletableFuture<Void>
PartitionSender. send(EventData data)
SendEventData
to a specific EventHub partition.default void
EventHubClient. sendSync(EventData data)
Synchronous version ofEventHubClient.send(EventData)
.default void
EventHubClient. sendSync(EventData eventData, String partitionKey)
Synchronous version ofEventHubClient.send(EventData, String)
.default void
PartitionSender. sendSync(EventData data)
Synchronous version ofPartitionSender.send(EventData)
Api.boolean
EventDataBatch. tryAdd(EventData eventData)
Add'sEventData
toEventDataBatch
, 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 void
PartitionReceiveHandler. 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 ofEventData
to EventHub.CompletableFuture<Void>
EventHubClient. send(Iterable<EventData> eventDatas, String partitionKey)
Send a 'batch ofEventData
with the same partitionKey' to EventHub.CompletableFuture<Void>
PartitionSender. send(Iterable<EventData> eventDatas)
SendEventData
to a specific EventHub partition.default void
EventHubClient. sendSync(Iterable<EventData> eventDatas)
Synchronous version ofEventHubClient.send(Iterable)
.default void
EventHubClient. sendSync(Iterable<EventData> eventDatas, String partitionKey)
Synchronous version ofEventHubClient.send(Iterable, String)
.default void
PartitionSender. 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 class
EventDataImpl
Methods 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 int
EventDataImpl. 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)
-