Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ManagementClient"/> class.
 /// </summary>
 /// <param name="clients">The client creator to us to create clients that connect to the Runtime.</param>
 public ManagementClient(ICanCreateClients clients)
 {
     _clients = clients;
 }
Esempio n. 2
0
 public ManagementClient(ICanCreateClients clients, IConvertProjectionDefinitions definitionConverter, IConvertStreamProcessorStatus statusConverter)
 {
     _clients             = clients;
     _definitionConverter = definitionConverter;
     _statusConverter     = statusConverter;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ManagementClient"/> class.
 /// </summary>
 /// <param name="clients">The client creator to us to create clients that connect to the Runtime.</param>
 /// <param name="converter">The converter to use to convert stream processor statuses.</param>
 public ManagementClient(ICanCreateClients clients, IConvertStreamProcessorStatus converter)
 {
     _clients   = clients;
     _converter = converter;
 }