blob: 5358266240732803d015feac3e67258ab83d9ee8 [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]
protocol TimeService {
/// Requests an immediate update of the time from network.
Update(uint8 num_retries)
-> (bool successful);
};