Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Adaptive.Aeron/Image.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ long correlationId
/// <summary>
/// The position this <seealso cref="Image"/> has been consumed to by the subscriber.
/// </summary>
/// <remarks> The Position setter is deprecated and will be removed in 1.53.0. </remarks>
/// <returns> the position this <seealso cref="Image"/> has been consumed to by the subscriber. </returns>
public long Position
{
Expand Down Expand Up @@ -730,6 +731,7 @@ public int BoundedControlledPoll(ControlledFragmentHandler handler, long limitPo
/// <returns> the resulting position after the scan terminates which is a complete message. </returns>
/// <seealso cref="ControlledFragmentAssembler"/>
/// <seealso cref="ImageControlledFragmentAssembler"/>
[Obsolete("Will be removed in 1.53.0.")]
public long ControlledPeek(long initialPosition, IControlledFragmentHandler handler, long limitPosition)
{
if (_isClosed)
Expand Down Expand Up @@ -809,6 +811,7 @@ public long ControlledPeek(long initialPosition, IControlledFragmentHandler hand
return resultingPosition;
}

[Obsolete("Will be removed in 1.53.0.")]
public long ControlledPeek(long initialPosition, ControlledFragmentHandler handler, long limitPosition)
{
var fragmentHandler = HandlerHelper.ToControlledFragmentHandler(handler);
Expand Down
2 changes: 2 additions & 0 deletions src/Adaptive.Archiver/AeronArchive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1705,6 +1705,8 @@ public long FindLastMatchingRecording(long minRecordingId, string channelFragmen
/// position must be on a fragment boundary. Truncating a recording to the start position effectively deletes
/// the recording.
///
/// Truncating a recording will stop any concurrent replays of that recording.
///
/// </summary>
/// <param name="recordingId"> of the stopped recording to be truncated. </param>
/// <param name="position"> to which the recording will be truncated. </param>
Expand Down
2 changes: 2 additions & 0 deletions src/Adaptive.Archiver/ArchiveProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,8 @@ public bool GetRecordingPosition(long recordingId, long correlationId, long cont
/// position must be on a fragment boundary. Truncating a recording to the start position effectively deletes
/// the recording.
///
/// Truncating a recording will stop any concurrent replays of that recording.
///
/// </summary>
/// <param name="recordingId"> of the stopped recording to be truncated. </param>
/// <param name="position"> to which the recording will be truncated. </param>
Expand Down
Loading