Hangfire concurrency and throttling

HI,
I am new to hangfire and trying to understand how semaphore throttler works across multiple servers(3). I have multiple servers and have applied semaphore with maxcount of 5 for a particular background job method(GetData). I am trying to understand if hangfire will ensure only 5 workers across 3 servers will run GetData method simultaneously i.e GetData method will not be have more than 5 concurrent executions across servers?