Package com.pi4j.io.wdt
Interface WDTimer
-
- All Known Implementing Classes:
WDTimerImpl
public interface WDTimer
This is abstraction of WatchDog.- Author:
- zerog
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
void
disable()
int
getTimeOut()
void
heartbeat()
void
open()
void
setTimeOut(int timeout)
-
-
-
Method Detail
-
open
void open() throws IOException
- Throws:
IOException
-
setTimeOut
void setTimeOut(int timeout) throws IOException
- Throws:
IOException
-
getTimeOut
int getTimeOut() throws IOException
- Throws:
IOException
-
heartbeat
void heartbeat() throws IOException
- Throws:
IOException
-
disable
void disable() throws IOException
- Throws:
IOException
-
close
void close() throws IOException
- Throws:
IOException
-
-