 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package gojay
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| 	"sync"
 | |
| )
 | |
| 
 | |
| // NewEncoder returns a new StreamEncoder.
 | |
| // It takes an io.Writer implementation to output data.
 | |
| // It initiates the done channel returned by Done().
 | |
| func (s stream) NewEncoder(w io.Writer) *StreamEncoder {
 | |
| 	enc := BorrowEncoder(w)
 | |
| 	return &StreamEncoder{Encoder: enc, nConsumer: 1, done: make(chan struct{}, 1), mux: &sync.RWMutex{}}
 | |
| }
 | |
| 
 | |
| // BorrowEncoder borrows a StreamEncoder from the pool.
 | |
| // It takes an io.Writer implementation to output data.
 | |
| // It initiates the done channel returned by Done().
 | |
| //
 | |
| // If no StreamEncoder is available in the pool, it returns a fresh one
 | |
| func (s stream) BorrowEncoder(w io.Writer) *StreamEncoder {
 | |
| 	streamEnc := streamEncPool.Get().(*StreamEncoder)
 | |
| 	streamEnc.w = w
 | |
| 	streamEnc.Encoder.err = nil
 | |
| 	streamEnc.done = make(chan struct{}, 1)
 | |
| 	streamEnc.Encoder.buf = streamEnc.buf[:0]
 | |
| 	streamEnc.nConsumer = 1
 | |
| 	streamEnc.isPooled = 0
 | |
| 	return streamEnc
 | |
| }
 | |
| 
 | |
| func (s stream) borrowEncoder(w io.Writer) *StreamEncoder {
 | |
| 	streamEnc := streamEncPool.Get().(*StreamEncoder)
 | |
| 	streamEnc.isPooled = 0
 | |
| 	streamEnc.w = w
 | |
| 	streamEnc.Encoder.err = nil
 | |
| 	return streamEnc
 | |
| }
 |