blob: 96bad4f377ec5ee26a0dfe887a3f0c451f9f03e0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.Ignite.Core.Services
{
using System;
using System.Collections.Generic;
/// <summary>
/// Service deployment descriptor.
/// </summary>
public interface IServiceDescriptor
{
/// <summary>
/// Gets service name.
/// </summary>
/// <returns>
/// Service name.
/// </returns>
string Name { get; }
/// <summary>
/// Gets the service type.
/// </summary>
/// <value>
/// Service type.
/// </value>
Type Type { get; }
/// <summary>
/// Gets maximum allowed total number of deployed services in the grid, 0 for unlimited.
/// </summary>
/// <returns>
/// Maximum allowed total number of deployed services in the grid, 0 for unlimited.
/// </returns>
int TotalCount { get; }
/// <summary>
/// Gets maximum allowed number of deployed services on each node, 0 for unlimited.
/// </summary>
/// <returns>
/// Maximum allowed total number of deployed services on each node, 0 for unlimited.
/// </returns>
int MaxPerNodeCount { get; }
/// <summary>
/// Gets cache name used for key-to-node affinity calculation.
/// This parameter is optional and is set only when key-affinity service was deployed.
/// </summary>
/// <returns>
/// Cache name, possibly null.
/// </returns>
string CacheName { get; }
/// <summary>
/// Gets affinity key used for key-to-node affinity calculation.
/// This parameter is optional and is set only when key-affinity service was deployed.
/// </summary>
/// <value>
/// Affinity key, possibly null.
/// </value>
object AffinityKey { get; }
/// <summary>
/// Gets affinity key used for key-to-node affinity calculation.
/// This parameter is optional and is set only when key-affinity service was deployed.
/// </summary>
/// <returns>
/// Affinity key, possibly null.
/// </returns>
Guid OriginNodeId { get; }
/// <summary>
/// Gets service deployment topology snapshot. Service topology snapshot is represented
/// by number of service instances deployed on a node mapped to node ID.
/// </summary>
/// <value>
/// Map of number of service instances per node ID.
/// </value>
IDictionary<Guid, int> TopologySnapshot { get; }
}
}