Files
microsoft--semantic-kernel/python/semantic_kernel/reliability/retry_mechanism_base.py
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

27 lines
714 B
Python

# Copyright (c) Microsoft. All rights reserved.
import logging
from abc import ABC, abstractmethod
from collections.abc import Awaitable, Callable
from typing import TypeVar
T = TypeVar("T")
logger: logging.Logger = logging.getLogger(__name__)
class RetryMechanismBase(ABC):
"""Base class for retry mechanisms."""
@abstractmethod
async def execute_with_retry(self, action: Callable[[], Awaitable[T]]) -> Awaitable[T]:
"""Executes the given action with retry logic.
Args:
action (Callable[[], Awaitable[T]]): The action to retry on exception.
Returns:
Awaitable[T]: An awaitable that will return the result of the action.
"""
pass