8 lines
		
	
	
		
			193 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			193 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package transport
 | |
| 
 | |
| // Communicator 用于其他设备通信
 | |
| type Communicator interface {
 | |
| 	// Send 用于发送一条单向数据(不等待回信)
 | |
| 	Send(address string, payload []byte) error
 | |
| }
 |