using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace IMCS.CCS.Service
{
public interface IDataStorageConfigurationService
{
///
/// 是否使用Redis
///
///
public bool IsUseRedis();
///
/// 获取项目的 文件地址 或者 项目 redis key
///
///
public string GetProjectPathOrKey();
///
/// 获取任务的 文件地址 或者 项目 redis key
///
///
public string GetTasksPathOrKey();
///
/// 获取 Redis 连接字符串
///
///
public string GetRedisConnectionString();
}
}