Edit: The numeric experiments that led to this question are wrong. I have left the question here because the answer from @Vincent was interesting and informative. Please also see other answer as to where I went wrong.
Let $B$ be a continuous, non-negative random variable with infinite support and let $\mu_B = \mathrm{E}(B)$ be the mean of $B$. Let $Z$ be uniformly distributed on the interval $[0,B]$, and $W = B-Z$. (Intuition: $B$ is a period when someone is busy, $Z$ is the arrival of an interruption, $W$ is the time to wait until that interruption will be serviced.)
Conjecture. As $\mu_B \to \infty$, $W$ converges in distribution to a uniform distribution on $[0,\mu_B]$.
(Edit: Thank you @Vincent who pointed out that I should have conjectured that $W/\mu_B$ converges in distribution to a uniform distribution on $[0,1]$. I have left the conjecture as-is for reference.)
I arrived at the conjecture from experiments; I have included examples and Python code below. But is it true? (Or under what conditions?)
Remark: My underlying motivation is from queueing theory. I have a system that alternates between busy periods and idle periods (or the generalization to periods of congestion versus intercongestion). If an event occurs when the system is busy, how long until it becomes idle? Or likewise if an event occurs when the system is idle, how long until it becomes busy?
Heuristic argument
(Inserted as update after initial post)
Let $f(x)$ be the probability density function for $B$ and $h(w)$ be the probability density function for $W$. Then a little bit of work (see below) establishes that $$ h'(w) = -\frac{ f(w) }{ w } $$ So postulate that under certain conditions, there exists $c_B$ such that if $0 < w < c_B$ then $f(w) \approx 0$ and hence $h'(w) \approx 0$. This accounts for an approximately-uniform distribution over $[0,c_B]$.
Moreover, further conjecture that in some circumstances, the distribution of $B$ can be changed to make $c_B$ bigger.
The mean $\mu_B = \mathrm{E}(B)$ of $B$ would appear to be a proxy for $c_B$ in some cases, though the conditions under which this is sufficient are not apparently obvious. Likewise, the necessary conditions for creating $c_B$ are not apparently obvious.
Proof that $h'(w) = -\frac{ f(w) }{ w }$. Tile the positive reals into intervals of width $\delta x$ and put $x_k = k \cdot \delta x$ for $k = 1, 2, \dots$. Then $$\begin{align*} \mathrm{P}(W=w) &= \sum_k \mathrm{P}(W=w|B=x_k)\cdot\mathrm{P}(B=x_k) \\ &= \lim_{\delta x \to 0} \sum_{k=\lfloor w/\delta x \rfloor}^{\infty} \frac{1}{x_k} f(x) \, \delta x \end{align*}$$ and hence $$\begin{align*} h(w) &= \int_{w}^{\infty} \frac{ f(x) }{ x } \, dx \\ &= \int_{0}^{\infty} \frac{ f(x) }{ x } \, dx - \int_{0}^{w} \frac{ f(x) }{ x } \, dx \end{align*}$$ Differentiating both sides yields the required result. $\blacksquare$
Examples
Histogram of wait times $W$ compared with the probability density function for the uniform distribution on $[0,\mu_B]$.
$B$ has an exponential distribution
$B$ has a Rayleigh distribution
$B$ has a gamma distribution
$B$ has a triangle distribution. It fails the condition of having infinite support, and the wait times do not appear to be uniformly distributed.
Software
(Edit: This software is wrong. Please see answer.)
Python 3.7.6, Spyder 4.0.1
# Distribution of time to the end of durations.
import math
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import uniform
# from scipy.stats import expon
# from scipy.stats import rayleigh
# from scipy.stats import lognorm
# from scipy.stats import triang
# from scipy.stats import gamma
# from scipy.stats import fatiguelife
from scipy.stats import rice
# from scipy.stats import chi
# from scipy.stats import chi2
# from scipy.stats import weibull_min
# from scipy.stats import pareto
# from scipy.stats import powerlognorm
# from scipy.stats import alpha
# from scipy.stats import semicircular
# Durations yielding wait times that appear to be uniformly distributed.
# rvDuration = expon(47.1)
# rvDuration = rayleigh(7)
# rvDuration = lognorm(1.5, 335) # Use loc to increase the mean.
# rvDuration = gamma(233)
# rvDuration = fatiguelife(0.4, 14) # Use loc to increase the mean.
rvDuration = rice(17.7)
# rvDuration = chi(114)
# rvDuration = chi2(7551)
# rvDuration = weibull_min(18)
# rvDuration = pareto(35.1)
# rvDuration = powerlognorm(222.14, 0.446)
# rvDuration = alpha(3.57, 0, 15.6) # But mean is infinite ?
# Durations yielding wait times that do not appear to be uniformly distributed.
# rvDuration = uniform(11, 12.6) # Note loc, scale parametrization
# rvDuration = triang(0.7, 0, 1225) # Use scale to increase the mean.
# rvDuration = semicircular(55, 55) # Use scale and loc to increase mean.
countSamples = 80000
fig, ax = plt.subplots(1, 1)
# Sample of durations.
Binterval = rvDuration.rvs(size=countSamples)
# Sample the interruptions.
Zinterrupt = uniform.rvs(0, Binterval)
# Get wait times.
Wwaitout = Binterval - Zinterrupt
# Plot histogram of the wait durations.
ax.hist(Wwaitout, bins='auto', density=True, alpha=0.2)
# Plot a pdf - conjecture is that it is approximately uniform from
# zero to the mean of distribution for the intervals.
meanBinterval = rvDuration.mean()
if not math.isinf(meanBinterval):
x = np.linspace(0, meanBinterval*1.2)
ax.plot(x, uniform(0, meanBinterval).pdf(x), 'r-', lw=2, alpha=0.6)
plt.title('Distribution of times to the end of random durations' + '\n' +
str(rvDuration.dist))
plt.xlabel('Wait time')
plt.ylabel('Density')
plt.show()
$B$ has an exponential distribution" />
$B$ has a Rayleigh distribution" />
$B$ has a gamma distribution" />
$B$ has a triangle distribution" />
Without additional assumptions, this is false. First, a comment: it does not make sense to ask for the convergence in distribution of the law towards the uniform on $[0,\mu_B]$, as $\mu_B$ goes to $\infty$, likewise it does not make sense to ask whether a sequence $u_n$ converges towards $n^2$ as $n$ goes to $\infty$. A more reasonable question is to ask whether $W/\mu_B$ converges towards the uniform distribution on $[0,1]$ as $\mu_B$ goes to $\infty$.
To see that the latter is wrong: consider $B= B_0$ with probability $1/2$ and $B=B_1$ with probability $1/2$, with $B_0$ supported on $[0,1]$ (with a continuous density and mean $1/2$) and $B_1=B_0+n$ supported on $[n,n+1]$. Then, $\mu_B=(n+1)/2$. But with probability at least $1/2$ (i.e. if $B=B_0$), $W$ is smaller than $1$. Therefore, $W/\mu_B$ is smaller than $1/\mu_B$ with probability at least $1/2$, and $W/\mu_B$ therefore does not converge towards an uniform variable on $[0,1]$.
Addendum: How to make things work: There is a reasonable assumption for which the statement becomes true. Assume that $B=\mu_B + o_P(\mu_B)$, i.e. $B=\mu_B(1+Z)$ with $Z$ which converges in distribution to $0$. Then, $W/\mu_B$ converges in distribution to the uniform distribution on $[0,1]$.
Proof: Compute the characteristic function of $W/\mu_B$ for $t\in \mathbb{R}$: $$E[e^{it W/\mu_B}] = E[e^{it(B-Z)/\mu_B}] = E[e^{itB/\mu_B} E[e^{-itZ/\mu_B}|B]]= E\left[e^{itB/\mu_B} \frac{e^{-itB/\mu_B}-1}{-itB}\right]=E\left[ \frac{e^{itB/\mu_B} -1}{itB/\mu_B}\right] = E\left[ \frac{e^{it(1+Z)} -1}{it(1+Z)}\right]\to \frac{e^{it} -1}{it},$$ where at the last step we used that $Z$ converges in distribution towards $0$ and that the function $x \mapsto \frac{e^{it(1+x)} -1}{it(1+x)}$ is continuous and bounded. We recognize at the limit the characteristic function of the uniform on $[0,1]$, giving the conclusion.