Exemplo n.º 1
0
func (i *Import) call(function string, parameter []byte, ctype messages.CallType) (uuid string) {

	req := messages.NewRequest(i.UUID(), function, ctype, parameter)
	if i.Service.Connected().Completed() {
		i.deliverRequest(req)
	} else {
		i.pending = append(i.pending, req)
	}
	return req.UUID
}
Exemplo n.º 2
0
func (i *Import) newRequest(function string, parameter interface{}, ctype messages.CallType) (req *messages.Request) {

	req = messages.NewRequest(i.UUID(), function, ctype, parameter)

	return
}