File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
sdk/eventhub/azure-eventhub/azure/eventhub Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -576,7 +576,8 @@ def send_event(
576
576
:keyword float timeout: The maximum wait time to send the event data in non-buffered mode or the
577
577
maximum wait time to enqueue the event data into the buffer in buffered mode.
578
578
In non-buffered mode, the default wait time specified when the producer
579
- was created will be used. In buffered mode, the default wait time is None.
579
+ was created will be used. In buffered mode, the default wait time is None indicating that the event will be
580
+ scheduled to send immediately.
580
581
:keyword str partition_id: The specific partition ID to send to. Default is None, in which case the service
581
582
will assign to all partitions using round-robin.
582
583
A `TypeError` will be raised if partition_id is specified and event_data_batch is an `EventDataBatch` because
Original file line number Diff line number Diff line change @@ -557,7 +557,8 @@ async def send_event(
557
557
:keyword float timeout: The maximum wait time to send the event data in non-buffered mode or the
558
558
maximum wait time to enqueue the event data into the buffer in buffered mode.
559
559
In non-buffered mode, the default wait time specified when the producer
560
- was created will be used. In buffered mode, the default wait time is None.
560
+ was created will be used. In buffered mode, the default wait time is None indicating that the event will be
561
+ scheduled to send immediately.
561
562
:keyword str partition_id: The specific partition ID to send to. Default is None, in which case the service
562
563
will assign to all partitions using round-robin.
563
564
A `TypeError` will be raised if partition_id is specified and event_data_batch is an `EventDataBatch` because
You can’t perform that action at this time.
0 commit comments