Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Should an error occur from the phoenix socket channel, the following redux event is dispatched. Invoked if the socket connection drops, or the channel crashes on the server.
Parameter | Description |
---|---|
All the events associated with the socket channels
After joining a phoenix channel, the following redux event is dispatched.
Parameter | Description |
---|
Should a phoenix channel be explicitly closed on the server or the channel was explicitly closed by calling channel.leave(). The following redux event is dispatched
Parameter | Description |
---|
Should an error occur from the phoenix socket channel, the following redux event is dispatched. Error response after joining the phoenix channel.
Parameter | Description |
---|
After phoenix channel is left. The following redux event is dispatched
Parameter | Description |
---|
Should an error occur from the phoenix socket channel, the following redux event is dispatched. Timeout error response after joining the phoenix channel.
Parameter | Description |
---|
Should an error occur from the phoenix socket channel, the following redux event is dispatched. Error response after pushing data to phoenix channel.
Parameter | Description |
---|
type
CHANNEL_ERROR
channelTopic
Name of channel/Topic
channel
Phoenix channel
type | CHANNEL_CLOSE |
channel | Phoenix channel |
type | CHANNEL_LEAVE |
channel | Phoenix channel |
type | CHANNEL_PUSH_ERROR |
channelTopic | Name of channel/Topic |
channel | Phoenix channel |
error | Phoenix channel error |
type | CHANNEL_JOIN |
channel | Phoenix channel |
additionalData | additionalData passed when using |
response | Phoenix channel response |
type | CHANNEL_JOIN_ERROR |
channelTopic | Name of channel/Topic |
channel | Phoenix channel |
additionalData | additionalData passed when using |
error | Phoenix channel error |
type | CHANNEL_TIMEOUT |
channelTopic | Name of channel/Topic |
channel | Phoenix channel |
additionalData | additionalData passed when using |
error | Phoenix channel error |