Exemplo n.º 1
0
func (s *testServiceServerPanicGuard) List(input *ListOptions, stream TestService_ListServer) (err error) {
	defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler)
	return s.inner.List(input, stream)
}
Exemplo n.º 2
0
func (s *testServiceServerPanicGuard) FetchPerson(ctx golang_org_x_net_context.Context, input *FetchOptions) (out *Person, err error) {
	defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler)
	return s.inner.FetchPerson(ctx, input)
}
Exemplo n.º 3
0
func (s *testServiceServerPanicGuard) Greet(ctx golang_org_x_net_context.Context, input *Person) (out *Greeting, err error) {
	defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler)
	return s.inner.Greet(ctx, input)
}