#region License Information /* * This file is part of SimSharp which is licensed under the MIT license. * See the LICENSE file in the project root for more information. */ #endregion using System; namespace SimSharp { public class ResourcePoolRequest : Request { public Func Filter { get; private set; } public ResourcePoolRequest(Simulation environment, Action callback, Action disposeCallback, Func filter) : base(environment, callback, disposeCallback) { Filter = filter; } } }