blob: b8e0b264b571ad50fa40f0fd44ee681a6af6a167 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.timezone;
/// Interface to allow manual updates of the system time.
[Discoverable]
interface TimeService {
/// Requests an immediate update of the time from network.
1: Update(uint8 num_retries)
-> (bool successful);
};