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); } }