Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class SamplingScan

A random sampling scan

Inheritance
object
ScanType
SamplingScan
Implements
IScanType
Inherited Members
ScanType.RangeScan(ScanTerm, ScanTerm)
ScanType.PrefixScan(string)
ScanType.SamplingScan(ulong)
ScanType.SamplingScan(ulong, ulong)
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Couchbase.KeyValue.RangeScan
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Volatile)]
public class SamplingScan : ScanType, IScanType

Constructors

View Source

SamplingScan(ulong)

Declaration
public SamplingScan(ulong limit)
Parameters
Type Name Description
ulong limit
View Source

SamplingScan(ulong, ulong)

Declaration
public SamplingScan(ulong limit, ulong seed)
Parameters
Type Name Description
ulong limit
ulong seed
View Source

SamplingScan(ulong, ulong, string)

Declaration
public SamplingScan(ulong limit, ulong seed, string collectionName)
Parameters
Type Name Description
ulong limit
ulong seed
string collectionName

Properties

View Source

Limit

The maximum number of documents to scan.

Declaration
public ulong Limit { get; set; }
Property Value
Type Description
ulong
View Source

Seed

The starting point.

Declaration
public ulong Seed { get; set; }
Property Value
Type Description
ulong

Implements

IScanType
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.