(s *FSSReconcileServer)
| 242 | } |
| 243 | |
| 244 | func NewFunctionServerImpl(s *FSSReconcileServer) *FunctionServerImpl { |
| 245 | return &FunctionServerImpl{ |
| 246 | reconcileSvr: s, |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | func (f *FunctionServerImpl) Process(req *proto.FunctionProcessRequest, stream proto.Function_ProcessServer) error { |
| 251 | runtime, err := f.reconcileSvr.getFunc(req.Name) |