CallbackConfigurer.configure

Accepts a reference to an object that is to be configured by the configurer.

class CallbackConfigurer(T, X, Dg, Args...)
@trusted
void
configure
(
ref T object
)
if (
is(T : X) &&
(
is(Dg : void delegate
(,
X
,
Args
)
) ||
is(Dg : void function
(,
X
,
Args
)
)
||
is(Dg : void delegate
(,
ref X
,
Args
)
)
||
is(Dg : void function
(,
ref X
,
Args
)
)
)
)

Parameters

object T

An object of type T, that will be configured

Meta