Skip to content
ModularityKit.Mutator ModularityKit.Mutator Docs
  • Home
  • Core
  • Governance
  • Redis
  • API
Search Results for

    Show / Hide Table of Contents

    Class ExecutionTimeoutException

    Exception thrown when mutation execution exceeds the allowed timeout.

    Inheritance
    object
    Exception
    MutationException
    ExecutionTimeoutException
    Implements
    ISerializable
    Inherited Members
    MutationException.ExecutionId
    Exception.GetBaseException()
    Exception.GetType()
    Exception.ToString()
    Exception.Data
    Exception.HelpLink
    Exception.HResult
    Exception.InnerException
    Exception.Message
    Exception.Source
    Exception.StackTrace
    Exception.TargetSite
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.ReferenceEquals(object, object)
    Namespace: ModularityKit.Mutator.Abstractions.Exceptions
    Assembly: ModularityKit.Mutator.dll
    Syntax
    public sealed class ExecutionTimeoutException : MutationException, ISerializable
    Remarks

    ExecutionTimeoutException occurs when the mutation takes longer than the configured Timeout to complete. This helps enforce SLA and system responsiveness.

    Elapsed provides the actual duration the mutation ran before timing out.

    Constructors

    | Edit this page View Source

    ExecutionTimeoutException(TimeSpan, TimeSpan)

    Exception thrown when mutation execution exceeds the allowed timeout.

    Declaration
    public ExecutionTimeoutException(TimeSpan timeout, TimeSpan elapsed)
    Parameters
    Type Name Description
    TimeSpan timeout

    The maximum allowed duration for the mutation.

    TimeSpan elapsed

    The actual duration the mutation ran before timing out.

    Remarks

    ExecutionTimeoutException occurs when the mutation takes longer than the configured Timeout to complete. This helps enforce SLA and system responsiveness.

    Elapsed provides the actual duration the mutation ran before timing out.

    Properties

    | Edit this page View Source

    Elapsed

    The actual elapsed time before the timeout occurred.

    Declaration
    public TimeSpan Elapsed { get; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    Timeout

    The configured timeout for the mutation execution.

    Declaration
    public TimeSpan Timeout { get; }
    Property Value
    Type Description
    TimeSpan

    Implements

    ISerializable
    • Edit this page
    • View Source
    In this article
    ModularityKit.Mutator Generated from XML docs and published from main. Back to top