Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ try (var allocator = new RootAllocator();
}
```

`SessionContext` and `DataFrame` are `AutoCloseable` and not thread-safe.
`SessionContext` and `DataFrame` are `AutoCloseable` and safe to share
across threads: `close()` waits for calls already in flight to return
before releasing the native object, and a call that loses the race to a
`close()` throws `IllegalStateException`.

## Documentation

Expand Down
Loading
Loading