Uses of Class
net.spy.memcached.protocol.couch.View

Packages that use View
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.protocol.couch   
 

Uses of View in net.spy.memcached
 

Methods in net.spy.memcached that return View
 View CouchbaseClient.getView(String designDocumentName, String viewName)
          Gets a view contained in a design document from the cluster.
 

Methods in net.spy.memcached that return types with arguments of type View
 HttpFuture<View> CouchbaseClient.asyncGetView(String designDocumentName, String viewName)
          Gets a view contained in a design document from the cluster.
 HttpFuture<View> CouchbaseClientIF.asyncGetView(String designDocumentName, String viewName)
           
 HttpFuture<List<View>> CouchbaseClient.asyncGetViews(String designDocumentName)
          Gets a future with a list of views for a given design document from the cluster.
 HttpFuture<List<View>> CouchbaseClientIF.asyncGetViews(String designDocumentName)
           
 List<View> CouchbaseClient.getViews(String designDocumentName)
          Gets a list of views for a given design document from the cluster.
 

Methods in net.spy.memcached with parameters of type View
 ViewFuture CouchbaseClient.query(View view, Query query)
          Queries a Couchbase view by calling its map function.
 ViewFuture CouchbaseClientIF.query(View view, Query query)
           
 HttpFuture<ViewResponseNoDocs> CouchbaseClient.queryAndExcludeDocs(View view, Query query)
          Queries a Couchbase view by calling it's map function.
 HttpFuture<ViewResponseNoDocs> CouchbaseClientIF.queryAndExcludeDocs(View view, Query query)
           
 HttpFuture<ViewResponseReduced> CouchbaseClient.queryAndReduce(View view, Query query)
          Queries a Couchbase view by calling it's map function and then the views reduce function.
 HttpFuture<ViewResponseReduced> CouchbaseClientIF.queryAndReduce(View view, Query query)
           
 

Uses of View in net.spy.memcached.protocol.couch
 

Methods in net.spy.memcached.protocol.couch with parameters of type View
 void ViewOperation.ViewCallback.gotData(View view)
           
 

Method parameters in net.spy.memcached.protocol.couch with type arguments of type View
 void ViewsOperation.ViewsCallback.gotData(List<View> views)