PoolConfigurationDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents the configuration of a pool for data transfer.
public record PoolConfigurationDto : IEquatable<PoolConfigurationDto>
Inheritance Object → PoolConfigurationDto
Implements IEquatable<PoolConfigurationDto>
Properties
CommunicationAdapterList
Gets or sets communication adapters associated with the pool.
public IEnumerable<PoolCommunicationAdapterDto> CommunicationAdapterList { get; }
Property Value
IEnumerable<PoolCommunicationAdapterDto>
Constructors
PoolConfigurationDto(IEnumerable<PoolCommunicationAdapterDto>)
Initializes a new instance of the PoolConfigurationDto class.
public PoolConfigurationDto(IEnumerable<PoolCommunicationAdapterDto> communicationAdapterList)
Parameters
communicationAdapterList
IEnumerable<PoolCommunicationAdapterDto>
Communication adapters associated with the pool.