List of usage examples for java.time LocalDateTime MIN
LocalDateTime MIN
To view the source code for java.time LocalDateTime MIN.
Click Source Link
From source file:org.openhab.binding.modbus.internal.handler.ModbusDataThingHandler.java
@Override public synchronized void dispose() { config = null;/*from ww w . j a va 2 s . c o m*/ readValueType = null; writeValueType = null; readTransformation = null; writeTransformation = null; readIndex = Optional.empty(); readSubIndex = Optional.empty(); writeStart = null; pollStart = 0; slaveId = 0; slaveEndpoint = null; manager = null; pollTask = null; isWriteEnabled = false; isReadEnabled = false; transformationOnlyInWrite = false; childOfEndpoint = false; pollerHandler = null; channelCache = new HashMap<>(); lastStatusInfoUpdate = LocalDateTime.MIN; statusInfo = new ThingStatusInfo(ThingStatus.UNKNOWN, ThingStatusDetail.NONE, null); channelLastUpdated = new HashMap<>(NUMER_OF_CHANNELS_HINT); channelLastState = new HashMap<>(NUMER_OF_CHANNELS_HINT); }