Skip to content

Commit

Permalink
delete Akka.Util.,Resolver (#6425)
Browse files Browse the repository at this point in the history
* close #4857
* moved `Base64Encoding` out of the public API since its name can easily clash
  • Loading branch information
Aaronontheweb authored Feb 21, 2023
1 parent 053199e commit 9779a37
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 294 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4972,14 +4972,6 @@ namespace Akka.Util
public static T op_Implicit(Akka.Util.AtomicReference<T> atomicReference) { }
public static Akka.Util.AtomicReference<T> op_Implicit(T value) { }
}
public class static Base64Encoding
{
public const string Base64Chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+~";
public static string Base64Encode(this long value) { }
[System.ObsoleteAttribute("Do not use. Pass in prefix as a string instead.")]
public static System.Text.StringBuilder Base64Encode(this long value, System.Text.StringBuilder sb) { }
public static string Base64Encode(this string s) { }
}
public class static BitArrayHelpers
{
public static byte[] ToBytes(this System.Collections.BitArray arr) { }
Expand Down Expand Up @@ -5045,10 +5037,6 @@ namespace Akka.Util
public bool IsValueCreated { get; }
public T Value { get; }
}
public interface IResolver
{
T Resolve<T>(object[] args);
}
public interface ISurrogate
{
Akka.Util.ISurrogated FromSurrogate(Akka.Actor.ActorSystem system);
Expand Down Expand Up @@ -5130,23 +5118,6 @@ namespace Akka.Util
public static Akka.Util.Option<T> op_Implicit(T value) { }
public static bool !=(Akka.Util.Option<T> left, Akka.Util.Option<T> right) { }
}
public abstract class Resolve : Akka.Actor.IIndirectActorProducer
{
protected Resolve() { }
public abstract System.Type ActorType { get; }
protected static Akka.Util.IResolver Resolver { get; }
public abstract Akka.Actor.ActorBase Produce();
public void Release(Akka.Actor.ActorBase actor) { }
public static void SetResolver(Akka.Util.IResolver resolver) { }
}
public class Resolve<TActor> : Akka.Util.Resolve
where TActor : Akka.Actor.ActorBase
{
public Resolve(params object[] args) { }
public override System.Type ActorType { get; }
public object[] Arguments { get; }
public override Akka.Actor.ActorBase Produce() { }
}
public class static Result
{
public static Akka.Util.Result<T> Failure<T>(System.Exception exception) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4979,14 +4979,6 @@ namespace Akka.Util
public static T op_Implicit(Akka.Util.AtomicReference<T> atomicReference) { }
public static Akka.Util.AtomicReference<T> op_Implicit(T value) { }
}
public class static Base64Encoding
{
public const string Base64Chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+~";
public static string Base64Encode(this long value) { }
[System.ObsoleteAttribute("Do not use. Pass in prefix as a string instead.")]
public static System.Text.StringBuilder Base64Encode(this long value, System.Text.StringBuilder sb) { }
public static string Base64Encode(this string s) { }
}
public class static BitArrayHelpers
{
public static byte[] ToBytes(this System.Collections.BitArray arr) { }
Expand Down Expand Up @@ -5052,10 +5044,6 @@ namespace Akka.Util
public bool IsValueCreated { get; }
public T Value { get; }
}
public interface IResolver
{
T Resolve<T>(object[] args);
}
public interface ISurrogate
{
Akka.Util.ISurrogated FromSurrogate(Akka.Actor.ActorSystem system);
Expand Down Expand Up @@ -5138,23 +5126,6 @@ namespace Akka.Util
public static Akka.Util.Option<T> op_Implicit(T value) { }
public static bool !=(Akka.Util.Option<T> left, Akka.Util.Option<T> right) { }
}
public abstract class Resolve : Akka.Actor.IIndirectActorProducer
{
protected Resolve() { }
public abstract System.Type ActorType { get; }
protected static Akka.Util.IResolver Resolver { get; }
public abstract Akka.Actor.ActorBase Produce();
public void Release(Akka.Actor.ActorBase actor) { }
public static void SetResolver(Akka.Util.IResolver resolver) { }
}
public class Resolve<TActor> : Akka.Util.Resolve
where TActor : Akka.Actor.ActorBase
{
public Resolve(params object[] args) { }
public override System.Type ActorType { get; }
public object[] Arguments { get; }
public override Akka.Actor.ActorBase Produce() { }
}
public class static Result
{
public static Akka.Util.Result<T> Failure<T>(System.Exception exception) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4972,14 +4972,6 @@ namespace Akka.Util
public static T op_Implicit(Akka.Util.AtomicReference<T> atomicReference) { }
public static Akka.Util.AtomicReference<T> op_Implicit(T value) { }
}
public class static Base64Encoding
{
public const string Base64Chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+~";
public static string Base64Encode(this long value) { }
[System.ObsoleteAttribute("Do not use. Pass in prefix as a string instead.")]
public static System.Text.StringBuilder Base64Encode(this long value, System.Text.StringBuilder sb) { }
public static string Base64Encode(this string s) { }
}
public class static BitArrayHelpers
{
public static byte[] ToBytes(this System.Collections.BitArray arr) { }
Expand Down Expand Up @@ -5045,10 +5037,6 @@ namespace Akka.Util
public bool IsValueCreated { get; }
public T Value { get; }
}
public interface IResolver
{
T Resolve<T>(object[] args);
}
public interface ISurrogate
{
Akka.Util.ISurrogated FromSurrogate(Akka.Actor.ActorSystem system);
Expand Down Expand Up @@ -5130,23 +5118,6 @@ namespace Akka.Util
public static Akka.Util.Option<T> op_Implicit(T value) { }
public static bool !=(Akka.Util.Option<T> left, Akka.Util.Option<T> right) { }
}
public abstract class Resolve : Akka.Actor.IIndirectActorProducer
{
protected Resolve() { }
public abstract System.Type ActorType { get; }
protected static Akka.Util.IResolver Resolver { get; }
public abstract Akka.Actor.ActorBase Produce();
public void Release(Akka.Actor.ActorBase actor) { }
public static void SetResolver(Akka.Util.IResolver resolver) { }
}
public class Resolve<TActor> : Akka.Util.Resolve
where TActor : Akka.Actor.ActorBase
{
public Resolve(params object[] args) { }
public override System.Type ActorType { get; }
public object[] Arguments { get; }
public override Akka.Actor.ActorBase Produce() { }
}
public class static Result
{
public static Akka.Util.Result<T> Failure<T>(System.Exception exception) { }
Expand Down
Loading

0 comments on commit 9779a37

Please sign in to comment.