blob: f1da6eaf86456adb6ebfcb3571323581b8f077a7 [file] [log] [blame]
// Copyright 2019 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.deprecatedtimezone;
/// 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);
};