Returns the sorted array of outbound processors.
array An array of processor objects.
protected function getOutbound() {
if (empty($this->sortedOutbound)) {
$this->sortedOutbound = $this
->sortProcessors('outboundProcessors');
}
return $this->sortedOutbound;
}