Banshee.ServiceStack.Application.RunIdle C# (CSharp) Method

RunIdle() public static method

public static RunIdle ( IdleHandler handler ) : uint
handler IdleHandler
return uint
        public static uint RunIdle (IdleHandler handler)
        {
            if (idle_handler == null) {
                throw new NotImplementedException ("The application client must provide an IdleImplementationHandler");
            }

            return idle_handler (handler);
        }