Uses of Interface
net.sf.sparql.benchmarking.operations.OperationCallable

Packages that use OperationCallable
net.sf.sparql.benchmarking.operations   
net.sf.sparql.benchmarking.operations.gsp   
net.sf.sparql.benchmarking.operations.parameterized   
net.sf.sparql.benchmarking.operations.parameterized.nvp   
net.sf.sparql.benchmarking.operations.query   
net.sf.sparql.benchmarking.operations.query.callables   
net.sf.sparql.benchmarking.operations.query.nvp   
net.sf.sparql.benchmarking.operations.update   
net.sf.sparql.benchmarking.operations.update.callables   
net.sf.sparql.benchmarking.operations.update.nvp   
net.sf.sparql.benchmarking.operations.util   
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations
 

Classes in net.sf.sparql.benchmarking.operations that implement OperationCallable
 class AbstractOperationCallable<T extends Options>
          Abstract implementation of an operation callable
 

Methods in net.sf.sparql.benchmarking.operations that return OperationCallable
<T extends Options>
OperationCallable<T>
Operation.createCallable(Runner<T> runner, T options)
          Creates the callable for running the operation in a background thread
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.gsp
 

Classes in net.sf.sparql.benchmarking.operations.gsp that implement OperationCallable
 class AbstractGSPCallable<T extends Options>
          Abstract callable for GSP operations
 class GSPDeleteCallable<T extends Options>
          A callable which runs the Graph Store Protocol DELETE operation
 class GSPGetCallable<T extends Options>
          A callable which runs the Graph Store Protocol GET operation
 class GSPHeadCallable<T extends Options>
          A callable which runs the Graph Store Protocol HEAD operation
 class GSPPostCallable<T extends Options>
          A callable which runs the Graph Store Protocol POST operation
 class GSPPutCallable<T extends Options>
          A callable which runs the Graph Store Protocol PUT operation
 

Methods in net.sf.sparql.benchmarking.operations.gsp that return OperationCallable
<T extends Options>
OperationCallable<T>
GSPPutOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
GSPPostOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
GSPHeadOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
GSPGetOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
GSPDeleteOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.parameterized
 

Methods in net.sf.sparql.benchmarking.operations.parameterized that return OperationCallable
<T extends Options>
OperationCallable<T>
InMemoryParameterizedUpdateOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
InMemoryParameterizedQueryOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
AbstractParameterizedUpdateOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
AbstractParameterizedQueryOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.parameterized.nvp
 

Methods in net.sf.sparql.benchmarking.operations.parameterized.nvp that return OperationCallable
<T extends Options>
OperationCallable<T>
ParameterizedNvpUpdateOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
ParameterizedNvpQueryOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.query
 

Methods in net.sf.sparql.benchmarking.operations.query that return OperationCallable
<T extends Options>
OperationCallable<T>
DatasetSizeOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
AbstractRemoteQueryOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
AbstractInMemoryQueryOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.query.callables
 

Classes in net.sf.sparql.benchmarking.operations.query.callables that implement OperationCallable
 class AbstractInMemoryQueryCallable<T extends Options>
          Abstract callable for operations that run queries against a local in-memory dataset
 class AbstractQueryCallable<T extends Options>
          Abstract callable for queries
 class AbstractRemoteQueryCallable<T extends Options>
          Abstract callable for operations that run queries against a remote service via HTTP
 class AbstractScalarValueCallable<T extends Options,TCallable extends AbstractQueryCallable<T>>
          A callable which counts SELECT results by retrieving the value of a specific column of the first row and then converting that value into an integer
 class InMemoryQueryCallable<T extends Options>
          A Callable for queries so we can execute them asynchronously with timeouts
 class LongValueCallable<T extends Options,TCallable extends AbstractQueryCallable<T>>
          A callable for getting the value of a specific variable in the first row of a result set as a long
 class RemoteQueryCallable<T extends Options>
          A Callable for queries so we can execute them asynchronously with timeouts
 class WrapperQueryCallable<T extends Options,TCallable extends AbstractQueryCallable<T>>
          A decorator to allow query callables to have parts of their behaviour modified without extending them directly.
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.query.nvp
 

Classes in net.sf.sparql.benchmarking.operations.query.nvp that implement OperationCallable
 class NvpQueryCallable<T extends Options>
          A query callable that adds custom NVPs to the request
 

Methods in net.sf.sparql.benchmarking.operations.query.nvp that return OperationCallable
<T extends Options>
OperationCallable<T>
FixedNvpQueryOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.update
 

Methods in net.sf.sparql.benchmarking.operations.update that return OperationCallable
<T extends Options>
OperationCallable<T>
InMemoryFixedUpdateOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
FixedUpdateOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.update.callables
 

Classes in net.sf.sparql.benchmarking.operations.update.callables that implement OperationCallable
 class AbstractInMemoryUpdateCallable<T extends Options>
          Abstract callable for operations that run updates against a local in-memory dataset
 class AbstractRemoteUpdateCallable<T extends Options>
          Abstract callable for operations that run updates
 class AbstractUpdateCallable<T extends Options>
          Abstract callable for update operations
 class InMemoryUpdateCallable<T extends Options>
           
 class RemoteUpdateCallable<T extends Options>
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.update.nvp
 

Classes in net.sf.sparql.benchmarking.operations.update.nvp that implement OperationCallable
 class NvpUpdateCallable<T extends Options>
          An update callable that adds custom NVPs to the request
 

Methods in net.sf.sparql.benchmarking.operations.update.nvp that return OperationCallable
<T extends Options>
OperationCallable<T>
FixedNvpUpdateOperation.createCallable(Runner<T> runner, T options)
           
 

Uses of OperationCallable in net.sf.sparql.benchmarking.operations.util
 

Classes in net.sf.sparql.benchmarking.operations.util that implement OperationCallable
 class MixOperationCallable<T extends Options>
          A callable for running an operation mix as an operation
 class NoOpCallable<T extends Options>
          A callable that does nothing
 class SleepCallable<T extends Options>
          A callable for sleeping
 

Methods in net.sf.sparql.benchmarking.operations.util that return OperationCallable
<T extends Options>
OperationCallable<T>
SleepOperation.createCallable(Runner<T> runner, T options)
           
<T extends Options>
OperationCallable<T>
MixOperation.createCallable(Runner<T> runner, T options)
           
 



Copyright © 2014. All Rights Reserved.