Storm\Core\Relational\Transaction::SubscribeToPostPersistEvent PHP Метод

SubscribeToPostPersistEvent() публичный Метод

Subscribe a callback to after the supplied row was persisted.
public SubscribeToPostPersistEvent ( Storm\Core\Relational\ITable $Table, callable $Event ) : void
$Table Storm\Core\Relational\ITable
$Event callable
Результат void
    public function SubscribeToPostPersistEvent(ITable $Table, callable $Event)
    {
        $this->AddEvent($this->PostPersistRowEventMap, $Table, $Event);
    }