get Services Status

@Query(value = "SELECT new com.tecknobit.brownie.services.hostservices.dtos.CurrentServiceStatus(" + "s." + IDENTIFIER_KEY + "," + "s." + STATUS_KEY + "," + "s." + PID_KEY + ") FROM BrownieHostService s" + _WHERE_ + "s." + IDENTIFIER_KEY + " IN (:" + SERVICES_KEY + ")" )
abstract fun getServicesStatus(@Param(value = "services") services: List<String>): List<CurrentServiceStatus>

Query used to retrieve the current status of the specified services

Return

the current services status as List of CurrentServiceStatus

Parameters

services

The services to retrieve their current status