Photon Server API Documentation v5.0RC1

Classes | Protected Member Functions | Properties | List of all members
ExitGames.Concurrency.Channels.ChannelSubscription< T > Class Template Reference

Subscription for actions on a channel. More...

Inheritance diagram for ExitGames.Concurrency.Channels.ChannelSubscription< T >:
ExitGames.Concurrency.Channels.BaseSubscription< T > ExitGames.Concurrency.Channels.ISubscribable< T > ExitGames.Concurrency.Channels.IProducerThreadSubscriber< T >

Protected Member Functions

override void OnMessageOnProducerThread (T msg)
 Receives the action and queues the execution on the target fiber. More...
 

Properties

override ISubscriptionRegistry Subscriptions [get]
 
- Properties inherited from ExitGames.Concurrency.Channels.BaseSubscription< T >
Filter< T > FilterOnProducerThread [get, set]
 ISubscribable<T>.FilterOnProducerThread More...
 
abstract ISubscriptionRegistry Subscriptions [get]
 
- Properties inherited from ExitGames.Concurrency.Channels.ISubscribable< T >
Filter< T > FilterOnProducerThread [get, set]
 Filter called from producer threads. Should be thread safe as it may be called from multiple threads. More...
 
- Properties inherited from ExitGames.Concurrency.Channels.IProducerThreadSubscriber< T >
ISubscriptionRegistry Subscriptions [get]
 

Additional Inherited Members

- Public Member Functions inherited from ExitGames.Concurrency.Channels.IProducerThreadSubscriber< T >
void ReceiveOnProducerThread (T msg)
 Method called from producer threads More...
 

Detailed Description

Subscription for actions on a channel.

Template Parameters
T

Member Function Documentation

◆ OnMessageOnProducerThread()

override void ExitGames.Concurrency.Channels.ChannelSubscription< T >.OnMessageOnProducerThread ( msg)
inlineprotectedvirtual

Receives the action and queues the execution on the target fiber.

Parameters
msg

Implements ExitGames.Concurrency.Channels.BaseSubscription< T >.

Property Documentation

◆ Subscriptions