mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			150 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			150 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package mq
 | 
						|
 | 
						|
import "github.com/golang/protobuf/proto"
 | 
						|
 | 
						|
type Producer interface {
 | 
						|
	SendMessage(m proto.Message, key ...string) (int32, int64, error)
 | 
						|
}
 |