function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jeremy Leiser 6Jeremy Leiser 6 

Apex Connector Framework: DataSource type not visible

I'm trying to implement the Apex Connector Framework, but when I try to create DataSource.Connection and DataSource.Provider classes, I get the following error when compiling:

"Type is not visible: DataSource.Connection"

This is the entirety of my sample DataSource.Connection class:
global class DBConnection extends DataSource.Connection {
	global DBConnection(DataSource.ConnectionParams connectionParams) {}
}

Does anyone know why I'm getting this error?  Thanks in advance for any help you can provide.

-Jeremy