15 lines
405 B
C#
15 lines
405 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AlayaCore.Installation;
|
|
using AlayaCore.Models.Manifests;
|
|
|
|
namespace AlayaCore.Abstractions.Interfaces.Services
|
|
{
|
|
public interface IJavaService
|
|
{
|
|
Task EnsureValidJavaInstalledAsync(
|
|
ManifestModel manifest,
|
|
InstallEnvironment environment,
|
|
CancellationToken cancellationToken = default);
|
|
}
|
|
} |