예제 #1
0
파일: timer.go 프로젝트: postfix/go-uv
func (timer *Timer) Again() (err error) {
	r := C.uv_timer_again(timer.t)
	if r != 0 {
		return timer.GetLoop().LastError().Error()
	}
	return nil
}
예제 #2
0
파일: timer.go 프로젝트: zchee/gouv
func (timer *Timer) Again() (err error) {
	r := C.uv_timer_again(timer.t)
	if r != 0 {
		return &Error{int(r)}
	}
	return nil
}