Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `fsevent.Intercept(f(g(h())))`.
(interceptors ...Interceptor)
| 1097 | // Intercept adds a list of query interceptors to the interceptors stack. |
| 1098 | // A call to `Intercept(f, g, h)` equals to `fsevent.Intercept(f(g(h())))`. |
| 1099 | func (c *FsEventClient) Intercept(interceptors ...Interceptor) { |
| 1100 | c.inters.FsEvent = append(c.inters.FsEvent, interceptors...) |
| 1101 | } |
| 1102 | |
| 1103 | // Create returns a builder for creating a FsEvent entity. |
| 1104 | func (c *FsEventClient) Create() *FsEventCreate { |
nothing calls this directly
no outgoing calls
no test coverage detected