Yes, channels are shared by all objects in the domain. But, is there a way to configure a specific object to use a specified channel? Say there are 2 well-known types A and B, and there are 2 channels registered, X and Y. Is there a way to tell obj A to use channel X and obj B to use channel Y?
> Yes, channels are shared by all objects in the domain.
> But, is there a way to configure a specific object to use a specified channel?
> Say there are 2 well-known types A and B, and there are 2 channels registered, X and Y.
> Is there a way to tell obj A to use channel X and obj B to use channel Y?
The only way:
Create domain D1, D2,
place object A into domain D1, place object B into domain D2.
register channel X in domain D1, register channel Y in domain D2
object A will use channel X, object B will use channel Y