// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "ifeedview.h" #include #include namespace proton { void IFeedView::forceCommitAndWait(CommitParam param) { vespalib::Gate gate; forceCommit(param, std::make_shared(gate)); gate.await(); } }