Files
scylladb/service/raft/raft_timeout.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

21 lines
411 B
C++

// Copyright (C) 2024-present ScyllaDB
// SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
#pragma once
#include <seastar/core/lowres_clock.hh>
#include <seastar/util/std-compat.hh>
#include "seastarx.hh"
#include <optional>
namespace service {
struct raft_timeout {
std::source_location loc = std::source_location::current();
std::optional<lowres_clock::time_point> value;
};
}