Vixen
02b45cc4
csharp
public record class RpcLimits

How many calls a connection may make.

No guide page documents this yet — the page shows what the code says about itself.

Remarks

A token bucket, per player. An RPC is the one thing a client can make the server do work for, so it is the one thing a client can use to make the server do work for nobody else — and the answer is a limit that exists by default rather than one somebody remembers to switch on.

Fields and properties (2)

  • public int CallsPerSecond

    How many calls a second a connection may sustain.

  • public int Burst

    How many it may make at once before the rate matters.

Used by (3)

  • RpcRouterVixen.Net
  • RpcRouterTargetVixen.Net.Fuzz
  • RpcTestsVixen.Net.Tests