Skip to content

Commit 757fca8

Browse files
Improve InitialOffsetProvider API documentation. (Azure#20473)
* Improve InitialOffsetProvider API documentation. * Update EventProcessorOptions.cs
1 parent 54bb09b commit 757fca8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public bool EnableReceiverRuntimeMetric
8282
/// <summary>
8383
/// Gets or sets a delegate which is used to get the initial position for a given partition to create <see cref="PartitionReceiver"/>.
8484
/// Delegate is invoked by passing in PartitionId and then user can return <see cref="PartitionReceiver"/> for receiving messages.
85-
/// This is only used when <see cref="Lease.Offset"/> is not provided and receiver is being created for the very first time.
85+
/// This is only used when a checkpoint cannot be found for the associated partition.
8686
/// </summary>
8787
public Func<string, EventPosition> InitialOffsetProvider { get; set; }
8888

@@ -114,4 +114,4 @@ internal void NotifyOfException(string hostname, string partitionId, Exception e
114114
}
115115
}
116116
}
117-
}
117+
}

0 commit comments

Comments
 (0)