diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-14 07:06:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 07:06:19 +0900 |
commit | 6419db33383b750d0033f37588699df43a8fe419 (patch) | |
tree | fef80d703bad0f16c58b713cf6269b47cec14b67 /guides/source | |
parent | 9434a0047af7bb71fd3a9a25d09b79e29d1395b6 (diff) | |
parent | 8c3e345521e1b5f45de65a201dcc7e11e1ead8b0 (diff) | |
download | rails-6419db33383b750d0033f37588699df43a8fe419.tar.gz rails-6419db33383b750d0033f37588699df43a8fe419.tar.bz2 rails-6419db33383b750d0033f37588699df43a8fe419.zip |
Merge pull request #30885 from yhirano55/add_action_cable_notifications_to_instrument_guide
Add Action Cable notifications to instrument guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index 82168ffbdb..390d989566 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -466,6 +466,45 @@ Active Job | `:adapter` | QueueAdapter object processing the job | | `:job` | Job object | +Action Cable +------------ + +### perform_action.action_cable + +| Key | Value | +| ---------------- | ------------------------- | +| `:channel_class` | Name of the channel class | +| `:action` | The action | +| `:data` | A hash of data | + +### transmit.action_cable + +| Key | Value | +| ---------------- | ------------------------- | +| `:channel_class` | Name of the channel class | +| `:data` | A hash of data | +| `:via` | Via | + +### transmit_subscription_confirmation.action_cable + +| Key | Value | +| ---------------- | ------------------------- | +| `:channel_class` | Name of the channel class | + +### transmit_subscription_rejection.action_cable + +| Key | Value | +| ---------------- | ------------------------- | +| `:channel_class` | Name of the channel class | + +### broadcast.action_cable + +| Key | Value | +| --------------- | -------------------- | +| `:broadcasting` | A named broadcasting | +| `:message` | A hash of message | +| `:coder` | The coder | + Active Storage -------------- |