// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System;
using System.Threading.Tasks;
using AmazonGameLiftPlugin.Core.Shared;
namespace AmazonGameLift.Editor
{
public interface IResponsePoller
{
/// For .
Task Poll(int periodMs, Func action, Predicate stopCondition = null) where T : Response;
}
}