func (t *T) MethodName(argType T1, replyType *T2) error
what is contents in parenthesis before MethodName? I mean this (t *T)
This comes from here: http://golang.org/pkg/net/rpc/ I try to understand golang rpc and saw this method definition.
Thanks,