backup.txt 209 B

12345678
  1. func (bus *baseBus) SetChannelDispatch(FxchanDisp interface{}, param interface{}) {
  2. f := reflect.ValueOf(FxchanDisp)
  3. var fnxdisp CbBusChanDisp = nil
  4. pfnx := reflect.ValueOf(&fnxdisp).Elem()
  5. pfnx.Set(f)
  6. }