diff --git a/src/Elastic.Channels/ChannelOptionsBase.cs b/src/Elastic.Channels/ChannelOptionsBase.cs index bf8a749..29e446e 100644 --- a/src/Elastic.Channels/ChannelOptionsBase.cs +++ b/src/Elastic.Channels/ChannelOptionsBase.cs @@ -4,9 +4,7 @@ using System; using System.Collections.Generic; -using System.IO; using System.Threading; -using System.Threading.Tasks; using Elastic.Channels.Buffers; using Elastic.Channels.Diagnostics; @@ -32,11 +30,6 @@ public abstract class ChannelOptionsBase : IChannelCallbacks< /// Provide an external cancellation token public CancellationToken? CancellationToken { get; set; } - /// - /// Optionally provides a custom write implementation to a channel. Concrete channel implementations are not required to adhere to this config - /// - public Func? WriteEvent { get; set; } = null; - /// public Action? ExportExceptionCallback { get; set; }