//export Unsubscribe func Unsubscribe(pdomain unsafe.Pointer, endpoint *C.char, cb uint64, eb uint64) { d := *(*core.Domain)(pdomain) go core.MantleUnsubscribe(d, C.GoString(endpoint), cb, eb) }
func (d *Domain) Unsubscribe(endpoint string, cb uint64, eb uint64) { go core.MantleUnsubscribe(d.coreDomain, endpoint, cb, eb) }