When endpoint.busy is set to true, the endpoint will temporarily reject new sessions from being created. Read/write.
// Mark the endpoint busy. New sessions will be prevented.
endpoint.busy = true;
// Mark the endpoint free. New session will be allowed.
endpoint.busy = false;
The busy property is useful when the endpoint is under heavy load and needs to temporarily reject new sessions while it catches up.