// service export const SERVICE_NAME = 'ad'; // grpc export const GRPC_PACKAGE_NAME = 'ad'; export const GRPC_SERVICE_NAME = 'AdService'; // messaging export const AD_CREATED_ROUTING_KEY = 'ad.created'; export const MATCHER_AD_CREATED_MESSAGE_HANDLER = 'matcherAdCreated'; export const MATCHER_AD_CREATED_ROUTING_KEY = 'matcher.ad.created'; export const MATCHER_AD_CREATED_QUEUE = 'matcher-ad-created'; export const MATCHER_AD_CREATION_FAILED_MESSAGE_HANDLER = 'matcherAdCreationFailed'; export const MATCHER_AD_CREATION_FAILED_ROUTING_KEY = 'matcher.ad.creation.failed'; export const MATCHER_AD_CREATION_FAILED_QUEUE = 'matcher-ad-creation-failed'; // configuration export const SERVICE_CONFIGURATION_SET_QUEUE = 'ad-configuration-set'; export const SERVICE_CONFIGURATION_DELETE_QUEUE = 'ad-configuration-delete'; export const SERVICE_CONFIGURATION_PROPAGATE_QUEUE = 'ad-configuration-propagate'; // health export const GRPC_HEALTH_PACKAGE_NAME = 'health'; export const HEALTH_AD_REPOSITORY = 'AdRepository'; export const HEALTH_CRITICAL_LOGGING_KEY = 'logging.ad.health.crit';