* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Messenger\Transport\Sender; use Symfony\Component\Messenger\Envelope; /** * Maps a message to a list of senders. * * @author Samuel Roze * @author Tobias Schultze */ interface SendersLocatorInterface { /** * Gets the senders for the given message name. * * @return iterable|SenderInterface[] Indexed by sender alias if available */ public function getSenders(Envelope $envelope): iterable; }