Uses of Class
org.glite.rgma.TimeInterval

Uses of TimeInterval in org.glite.rgma
 

Methods in org.glite.rgma that return TimeInterval
 TimeInterval PrimaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 TimeInterval SecondaryProducer.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.
 TimeInterval Resource.getTerminationInterval()
          Retrieves the resource's termination interval.
 TimeInterval QueryProperties.getTimeInterval()
          Returns the time interval associated with this QueryProperties.
 

Methods in org.glite.rgma with parameters of type TimeInterval
 Consumer ConsumerFactory.createConsumer(TimeInterval terminationInterval, java.lang.String selectStatement, QueryProperties queryProperties)
          Creates a consumer with a specific SELECT query and query type.
 OnDemandProducer ProducerFactory.createOnDemandProducer(TimeInterval terminationInterval, java.net.URI uri)
          Creates an on-demand producer.
 OnDemandProducer ProducerFactory.createOnDemandProducer(TimeInterval terminationInterval, java.net.URI uri, StringList voNames)
          Deprecated. See createOnDemandProducer(TimeInterval,URI)
 PrimaryProducer ProducerFactory.createPrimaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties)
          Creates a primary producer that uses the specified data storage and producer type.
 PrimaryProducer ProducerFactory.createPrimaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties, StringList voNames)
          Deprecated. Use createPrimaryProducer(TimeInterval,ProducerProperties).
 SecondaryProducer ProducerFactory.createSecondaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties)
          Creates a secondary producer, that uses a primary producer with the specified attributes to republish information.
 SecondaryProducer ProducerFactory.createSecondaryProducer(TimeInterval terminationInterval, ProducerProperties producerProperties, StringList voNames)
          Deprecated. See createSecondaryProducer(TimeInterval,ProducerProperties).
 void SecondaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod)
          Declares a table, specifying the retention period for history tuples.
 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.
static QueryProperties QueryProperties.getContinuous(TimeInterval timeInterval)
          Returns a CONTINUOUS QueryProperties object with a time interval.
static QueryProperties QueryProperties.getHistory(TimeInterval timeInterval)
          Returns a HISTORY QueryProperties object with a time interval.
static QueryProperties QueryProperties.getLatest(TimeInterval timeInterval)
          Returns a LATEST QueryProperties object with a time interval.
 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, TimeInterval latestRetentionPeriod)
          Publishes using a list of SQL INSERT statements.
 void Resource.setTerminationInterval(TimeInterval terminationInterval)
          Deprecated. Termination interval can only be set in factory create method.
 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.