sls/app/Contracts/IceCandidateProviderInterface.php
kushal.saha 3aca6d90f3 feat(webrtc): implement IceCandidateProviderInterface with Metered and ConvexSol drivers
- Add Metered and ConvexSol (CoTURN) provider drivers with response validation and caching
- Add IceCandidateManager with automatic failover and structured logging
- Add IceCandidateProviderInterface and DTOs conforming to RTCIceServer format
2026-08-26 12:44:41 +00:00

14 lines
254 B
PHP

<?php
namespace App\Contracts;
use App\DTOs\IceCandidatesDto;
interface IceCandidateProviderInterface
{
/**
* Retrieve the ICE candidate / TURN / STUN server configurations.
*/
public function getIceCandidates(): IceCandidatesDto;
}