use of org.neo4j.kernel.guard.TimeoutGuard in project neo4j by neo4j.
the class DataSourceModule method createGuard.
private Guard createGuard(Dependencies deps, Clock clock, LogService logging) {
TimeoutGuard guard = createGuard(clock, logging);
deps.satisfyDependency(guard);
return guard;
}
Aggregations