MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / PooledTableSession

Struct PooledTableSession

client/tablesessionpool.go:73–77  ·  view source on GitHub ↗

PooledTableSession represents a session managed within a TableSessionPool. It ensures proper cleanup and reusability of the session.

Source from the content-addressed store, hash-verified

71// PooledTableSession represents a session managed within a TableSessionPool.
72// It ensures proper cleanup and reusability of the session.
73type PooledTableSession struct {
74 session Session
75 sessionPool *SessionPool
76 closed int32
77}
78
79// isConnectionError returns true if the error is a connection-level error
80// (i.e., not a server-side execution error indicated by TSStatus).

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected