Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Impl/TextModel/Storage/ILineBreaks.cs')
-rw-r--r--src/Text/Impl/TextModel/Storage/ILineBreaks.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Text/Impl/TextModel/Storage/ILineBreaks.cs b/src/Text/Impl/TextModel/Storage/ILineBreaks.cs
index ccf1358..2100860 100644
--- a/src/Text/Impl/TextModel/Storage/ILineBreaks.cs
+++ b/src/Text/Impl/TextModel/Storage/ILineBreaks.cs
@@ -32,4 +32,16 @@ namespace Microsoft.VisualStudio.Text.Implementation
/// </summary>
void Add(int start, int length);
}
+
+ public interface IPooledLineBreaksEditor : ILineBreaksEditor
+ {
+ /// <summary>
+ /// If the internal list of line breaks has excess capacity, copy it to a correctly sized list and return the oversized
+ /// list to a pool that can be reused.
+ /// </summary>
+ /// <remarks>
+ /// This method should be called when using calling <see cref="LineBreakManager.CreatePooledLineBreakEditor(int)"/>.
+ /// </remarks>
+ void ReleasePooledLineBreaks();
+ }
}