- 
                    
                    
 public interface IThingHomeDeviceStatusListenerDevice Status Listening. 
- 
                
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    - 
                                
                            
                                Method SummaryModifier and Type Method Description abstract voidonDeviceDpUpdate(String devId, String dpStr)Data point change. abstract voidonDeviceStatusChanged(String devId, boolean online)Device status change. abstract voidonDeviceInfoUpdate(String devId)Equipment Information Update. - 
                    
                    
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        onDeviceDpUpdateabstract void onDeviceDpUpdate(String devId, String dpStr) Data point change. - Parameters:
- devId- The id of the device which you are listening to.
- dpStr- Json string description of the data point.
 
 - 
                                        onDeviceStatusChangedabstract void onDeviceStatusChanged(String devId, boolean online) Device status change. such as online or offline. - Parameters:
- devId- The id of the device which you are listening to.
- online- online flag,- {@code true}that means online, or- {@code false}that means offline.
 
 - 
                                        onDeviceInfoUpdateabstract void onDeviceInfoUpdate(String devId) Equipment Information Update. Such as name, etc. - Parameters:
- devId- The id of the device which you are listening to.
 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
                    
                    
 
-