mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package compressions
 | 
						|
 | 
						|
import "io"
 | 
						|
 | 
						|
type Reader interface {
 | 
						|
	Read(p []byte) (n int, err error)
 | 
						|
	Reset(reader io.Reader) error
 | 
						|
	RawClose() error
 | 
						|
	Close() error
 | 
						|
 | 
						|
	SetPool(pool *ReaderPool)
 | 
						|
	ResetFinish()
 | 
						|
}
 |