Offload int[] to byte[].
[SquirrelJME.git] / modules / dio-watchdog / src / main / java / jdk / dio / watchdog / WindowedWatchdogTimer.java
blob226316e68d798080106eec785dbab01e0315f829
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package jdk.dio.watchdog;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import java.io.IOException;
14 import jdk.dio.ClosedDeviceException;
16 @SuppressWarnings("DuplicateThrows")
17 @Api
18 public interface WindowedWatchdogTimer
19 extends WatchdogTimer
21 @Api
22 long getClosedWindowTimeout()
23 throws IOException, ClosedDeviceException;
25 @Override
26 void start(long __a)
27 throws IOException, ClosedDeviceException;
29 @Api
30 void start(long __a, long __b)
31 throws IOException, ClosedDeviceException;