CitrusleafClient Scan Method Aerospike
Overload List

  NameDescription
Public methodScan(String, String, Int32, CitrusleafClient IScanCallback)
Read records in the database using specified namespace filter, set name filter and the latest callback interface arguments. This method issues scan requests to every server node in the cluster in parallel threads. The client parses the returned scan data and calls the supplied user-defined callback method for each record returned. The user can terminate the scan by returning false in the callback method. This method will block until the scan is complete or terminated by the callback method. Callbacks are made within the scope of this method call.
Public methodScan(String, String, Int32, ScanCallback2)Obsolete.
Scan the database using specified namespace and set filters. The supplied user-defined method is called for each record returned. The user can terminate the scan by returning false in the callback method. This method will block until the scan is complete or terminated by the callback method. Callbacks are made within the scope of this method call.
Public methodScan(String, String, Int32, ScanCallback, Object)Obsolete.
Scan the database using specified namespace and set filters. The supplied user-defined method is called for each record returned. This method will block until the scan is complete. Callbacks are made within the scope of this method call. This method exists for backwards compatibility.
Back to Top
See Also