12#ifndef O2_COMPUTINGQUOTAEVALUATOR_H_
13#define O2_COMPUTINGQUOTAEVALUATOR_H_
29struct ServiceRegistry;
53 void updateOffers(std::vector<ComputingQuotaOffer>& offers, uint64_t now);
56 std::array<ComputingQuotaOffer, MAX_INFLIGHT_OFFERS>
mOffers;
60 std::array<ComputingQuotaInfo, MAX_INFLIGHT_OFFERS>
mInfos;
struct uv_timer_s uv_timer_t
struct uv_loop_s uv_loop_t
void consume(int taskId, ComputingQuotaConsumer &consumed, std::function< void(ComputingQuotaOffer const &accumulatedConsumed, ComputingQuotaStats &)> &reportConsumedOffer)
void updateOffers(std::vector< ComputingQuotaOffer > &offers, uint64_t now)
now the time (e.g. uv_now) when invoked.
ComputingQuotaStats mStats
std::array< ComputingQuotaInfo, MAX_INFLIGHT_OFFERS > mInfos
Information about a given computing offer (e.g. when it was started to be used)
bool selectOffer(int task, ComputingQuotaRequest const &request, uint64_t now)
void handleExpired(std::function< void(ComputingQuotaOffer const &, ComputingQuotaStats const &)> reportExpired)
static constexpr int MAX_INFLIGHT_OFFERS
void dispose(int taskId)
Dispose offers for a given taskId.
std::array< ComputingQuotaOffer, MAX_INFLIGHT_OFFERS > mOffers
All the available offerts.
std::vector< ComputingQuotaOfferRef > mExpiredOffers
The offers which expired and need to be given back.
Defining PrimaryVertex explicitly as messageable.
std::function< OfferScore(ComputingQuotaOffer const &offer, ComputingQuotaOffer const &accumulated)> ComputingQuotaRequest
std::function< void(int id, std::array< ComputingQuotaOffer, 16 > &, ComputingQuotaStats &, std::function< void(ComputingQuotaOffer const &, ComputingQuotaStats &stats)>)> ComputingQuotaConsumer
Statistics on the offers consumed, expired.