Uses of Class
org.glite.rgma.UnknownResourceException

Uses of UnknownResourceException in org.glite.rgma
 

Methods in org.glite.rgma that throw UnknownResourceException
 TimeInterval SecondaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 void SecondaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod)
          Declares a table, specifying the retention period for history tuples.
 void Resource.setTerminationInterval(TimeInterval terminationInterval)
          Deprecated. Termination interval can only be set in factory create method.
 TimeInterval Resource.getTerminationInterval()
          Retrieves the resource's termination interval.
 void Resource.close()
          Closes the resource.
 void Resource.destroy()
          Closes and destroys the resource.
 void Resource.showSignOfLife()
          Indicates to the resource that this API is still alive.
 OnDemandProducer ProducerFactory.reconnectOnDemandProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing OnDemandProducer resource.
 PrimaryProducer ProducerFactory.reconnectPrimaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing PrimaryProducer resource.
 SecondaryProducer ProducerFactory.reconnectSecondaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing SecondaryProducer resource.
 TimeInterval PrimaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 TimeInterval PrimaryProducer.getLatestRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to latest tuples for the specified table.
 void PrimaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod, TimeInterval latestRetentionPeriod)
          Declares a table, specifying the retention period for history and latest tuples.
 void PrimaryProducer.insert(java.lang.String insertStatement)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insert(java.lang.String insertStatement, TimeInterval latestRetentionPeriod)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insertList(StringList insertStatements)
          Publishes using a list of SQL INSERT statements.
 void PrimaryProducer.insertList(StringList insertStatements, TimeInterval latestRetentionPeriod)
          Publishes using a list of SQL INSERT statements.
 void OnDemandProducer.declareStaticTable(java.lang.String tableName, java.lang.String predicate)
          Declares a static table into which this Producer can publish.
 Consumer ConsumerFactory.reconnectConsumer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing Consumer resource.
 boolean Consumer.isExecuting()
          Deprecated. Use ResultSet#endOfResults
 void Consumer.abort()
          Aborts the current query.
 int Consumer.count()
          Deprecated.  
 boolean Consumer.hasAborted()
          Determines if the last query has aborted.
 ResultSet Consumer.pop(int maxCount)
          Retrieves at most maxCount tuples from the consumer that it has received from producers.
 ResultSet Consumer.popAll()
          Deprecated.  
 void Consumer.start(TimeInterval timeout)
          Starts this consumer's query, using the mediator to locate producers, terminating after the specified time interval.
 void Consumer.start(TimeInterval timeout, ResourceEndpointList producers)
          Starts this consumer's query, contacting the specified producers, terminating after the specified time interval.