blob: db0a43c7231ca85562120fff6c42f6ed87506a8f [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.
Update(uint8 num_retries)
-> (bool successful);
};