public interface TableProvider
| Modifier and Type | Method and Description | 
|---|---|
void | 
initialize(java.lang.String id,
          TableProviderControl helper,
          TableProviderParameters parameters,
          TableNameMapper mapper)
An instance of your class will be initialized with the parameters that were defined in the LVConf. 
 | 
void | 
shutdown()
When this is called, you should close threads and do whatever else is necessary to clean up. 
 | 
void | 
start()
You should connect to your server successfully before returning from this call. 
 | 
void initialize(java.lang.String id,
                TableProviderControl helper,
                TableProviderParameters parameters,
                TableNameMapper mapper)
         throws LiveViewException
id - The id by which this TableProvider is declaredhelper - Used to control the life cycle of the tableparameters - Allows parameters supplied in LVCONFs to be passed to the table implementationmapper - Provides a means to translate tables names based on LVCONF configurationLiveViewExceptionvoid start()
    throws LiveViewException,
           java.lang.InterruptedException
LiveViewExceptionjava.lang.InterruptedExceptionvoid shutdown()