| 32 | ) |
| 33 | |
| 34 | type EFCEngine struct { |
| 35 | runtime *datav1alpha1.EFCRuntime |
| 36 | name string |
| 37 | namespace string |
| 38 | runtimeType string |
| 39 | engineImpl string |
| 40 | runtimeInfo base.RuntimeInfoInterface |
| 41 | UnitTest bool |
| 42 | Log logr.Logger |
| 43 | *ctrl.Helper |
| 44 | client.Client |
| 45 | //When reaching this gracefulShutdownLimits, the system is forced to clean up. |
| 46 | gracefulShutdownLimits int32 |
| 47 | retryShutdown int32 |
| 48 | Recorder record.EventRecorder |
| 49 | } |
| 50 | |
| 51 | func Build(id string, ctx cruntime.ReconcileRequestContext) (base.Engine, error) { |
| 52 | engine := &EFCEngine{ |
nothing calls this directly
no outgoing calls
no test coverage detected