BaseClient represents the Elasticsearch client.
| 164 | |
| 165 | // BaseClient represents the Elasticsearch client. |
| 166 | type BaseClient struct { |
| 167 | Transport elastictransport.Interface |
| 168 | metaHeader string |
| 169 | compatibilityHeader bool |
| 170 | |
| 171 | autoDrainBody bool |
| 172 | disableMetaHeader bool |
| 173 | productCheckMu sync.RWMutex |
| 174 | productCheckSuccess bool |
| 175 | |
| 176 | closeDone uint32 |
| 177 | } |
| 178 | |
| 179 | // Client represents the Functional Options API. |
| 180 | type Client struct { |
nothing calls this directly
no outgoing calls
no test coverage detected