Skip to content

OnQueueCycle

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnQueueCycle( int availableSlots )
{
    Puts( "OnQueueCycle works!" );
}

Location

  • ConnectionQueue::Cycle(int availableSlots)
csharp
public void Cycle(int availableSlots)
{
	if (Interface.CallHook("OnQueueCycle", availableSlots) != null)
	{
		return;
	}
	if (Time.realtimeSinceStartup > this.nextCleanupReservedSlots)
	{
//---

Released under the MIT License.