Skip to content

Commit

Permalink
Update API approval list
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed Aug 30, 2023
1 parent bb19457 commit 854a592
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ namespace Akka.Cluster.Hosting
{
public ClusterOptions() { }
public string? AppVersion { get; set; }
public Akka.Remote.Hosting.PhiAccrualFailureDetectorOptions? FailureDetector { get; set; }
public bool? LogInfo { get; set; }
public bool? LogInfoVerbose { get; set; }
public int? MinimumNumberOfMembers { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ namespace Akka.Hosting
{
public static string ToHocon(this bool value) { }
public static string ToHocon(this bool? value) { }
public static string ToHocon(this double value) { }
public static string ToHocon(this double? value) { }
public static string ToHocon(this float value) { }
public static string ToHocon(this float? value) { }
public static string ToHocon(this int value) { }
public static string ToHocon(this int? value) { }
public static string ToHocon(this long value) { }
public static string ToHocon(this long? value) { }
public static string ToHocon(this string? text) { }
public static string ToHocon(this System.TimeSpan value, bool allowInfinite = false, bool zeroIsInfinite = false) { }
public static string ToHocon(this System.TimeSpan? value, bool allowInfinite = false, bool zeroIsInfinite = false) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,39 @@
public static Akka.Hosting.AkkaConfigurationBuilder WithRemoting(this Akka.Hosting.AkkaConfigurationBuilder builder, System.Action<Akka.Remote.Hosting.RemoteOptions> configure) { }
public static Akka.Hosting.AkkaConfigurationBuilder WithRemoting(this Akka.Hosting.AkkaConfigurationBuilder builder, string? hostname = null, int? port = default, string? publicHostname = null, int? publicPort = default) { }
}
public class DeadlineFailureDetectorOptions
{
public DeadlineFailureDetectorOptions() { }
public System.TimeSpan? AcceptableHeartbeatPause { get; set; }
public System.TimeSpan? HeartbeatInterval { get; set; }
public System.Text.StringBuilder ToHocon() { }
}
public class PhiAccrualFailureDetectorOptions
{
public PhiAccrualFailureDetectorOptions() { }
public System.TimeSpan? AcceptableHeartbeatPause { get; set; }
public System.TimeSpan? ExpectedResponseAfter { get; set; }
public System.TimeSpan? HeartbeatInterval { get; set; }
public int? MaxSampleSize { get; set; }
public System.TimeSpan? MinStandardDeviation { get; set; }
public double? Threshold { get; set; }
public System.TimeSpan? UnreachableNodesReaperInterval { get; set; }
public System.Text.StringBuilder ToHocon() { }
}
public class RemoteOptions
{
public RemoteOptions() { }
public bool? EnableSsl { get; set; }
public string? HostName { get; set; }
public long? MaxFrameSize { get; set; }
public int? Port { get; set; }
public string? PublicHostName { get; set; }
public int? PublicPort { get; set; }
public long? ReceiveBufferSize { get; set; }
public long? SendBufferSize { get; set; }
public Akka.Remote.Hosting.SslOptions Ssl { get; set; }
public Akka.Remote.Hosting.DeadlineFailureDetectorOptions? TransportFailureDetector { get; set; }
public Akka.Remote.Hosting.PhiAccrualFailureDetectorOptions? WatchFailureDetector { get; set; }
}
public sealed class SslCertificateOptions
{
Expand Down

0 comments on commit 854a592

Please sign in to comment.