Skip to content
Snippets Groups Projects
Select Git revision
  • 04d241f266bb39a5b65e54d9924887571d625b96
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

ConnectionIdProvider.swift

Blame
  • processor.go 1.02 KiB
    ////////////////////////////////////////////////////////////////////////////////
    // Copyright © 2022 xx foundation                                             //
    //                                                                            //
    // Use of this source code is governed by a license that can be found in the  //
    // LICENSE file.                                                              //
    ////////////////////////////////////////////////////////////////////////////////
    
    package groupChat
    
    import (
    	"fmt"
    	"gitlab.com/elixxir/client/cmix/identity/receptionID"
    	"gitlab.com/elixxir/client/cmix/rounds"
    	"gitlab.com/elixxir/primitives/format"
    )
    
    // Processor manages the handling of received group chat messages.
    type Processor interface {
    	// Process decrypts and hands off the message to its internal down stream
    	// message processing system.
    	Process(decryptedMsg MessageReceive, msg format.Message,
    		receptionID receptionID.EphemeralIdentity, round rounds.Round)
    
    	// Stringer interface for debugging.
    	fmt.Stringer
    }