github.com/vmware/transport-go@v1.3.4/bus/channel_event_handler.go (about)

     1  // Copyright 2019-2020 VMware, Inc.
     2  // SPDX-License-Identifier: BSD-2-Clause
     3  
     4  package bus
     5  
     6  import (
     7  	"github.com/google/uuid"
     8  )
     9  
    10  type channelEventHandler struct {
    11  	callBackFunction MessageHandlerFunction
    12  	runOnce          bool
    13  	runCount         int64
    14  	uuid             *uuid.UUID
    15  }