You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel Horizon has the concept of tags. I think this could be pretty trivial to add to this bundle via a Stamp and perhaps an attribute:
// as an explicit stamp when dispatching$bus->dispatch(newRenderVideo($video), [
newTagStamp('render', 'video:'.$video->getId()),
]);
// as an attribute on the message
#[MessageTag('render')]
classRenderVideo
{}
The tags could be saved as a json column in the db for lookup/monitoring.
The text was updated successfully, but these errors were encountered:
Laravel Horizon has the concept of tags. I think this could be pretty trivial to add to this bundle via a Stamp and perhaps an attribute:
The tags could be saved as a json column in the db for lookup/monitoring.
The text was updated successfully, but these errors were encountered: