Microsoft.AspNet.SignalR.HighFrequencyTimer.HighFrequencyTimer C# (CSharp) Метод

HighFrequencyTimer() публичный Метод

Creates a new instance of a high-resolution FPS timer.
public HighFrequencyTimer ( double fps, Action callback ) : System
fps double The desired frame rate per second.
callback Action The callback to be invoked on each frame.
Результат System
        public HighFrequencyTimer(double fps, Action<long> callback)
            : this(fps, callback, null, null, null)
        {
            
        }

Same methods

HighFrequencyTimer::HighFrequencyTimer ( double fps, Action callback, System.Action started, System.Action stopped, Action actualFpsUpdate ) : System