pub async fn get_readiness<J, RR, TR, NR, NFR, SR, TCR, PR, AKR>(
data: ThinDataAppState<J, RR, TR, NR, NFR, SR, TCR, PR, AKR>,
) -> ReadinessResponsewhere
J: JobProducerTrait + Send + Sync + 'static,
RR: RelayerRepository + Repository<RelayerRepoModel, String> + Send + Sync + 'static,
TR: TransactionRepository + Repository<TransactionRepoModel, String> + Send + Sync + 'static,
NR: NetworkRepository + Repository<NetworkRepoModel, String> + Send + Sync + 'static,
NFR: Repository<NotificationRepoModel, String> + Send + Sync + 'static,
SR: Repository<SignerRepoModel, String> + Send + Sync + 'static,
TCR: TransactionCounterTrait + Send + Sync + 'static,
PR: PluginRepositoryTrait + Send + Sync + 'static,
AKR: ApiKeyRepositoryTrait + Send + Sync + 'static,Expand description
Get readiness response with caching.
Checks the cache first (10-second TTL). On cache miss, performs health checks for all components: system resources, Redis pools, queue, and plugins.
Returns 200 OK if ready (Healthy or Degraded), 503 if Unhealthy.