Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface MurmurHashOptions

Options for createHash

Hierarchy

  • TransformOptions
    • MurmurHashOptions

Index

Properties

Optional allowHalfOpen

allowHalfOpen: boolean

Optional decodeStrings

decodeStrings: boolean

Optional encoding

encoding: string

Optional endianness

endianness: Endianness

Digest byte order.

Optional highWaterMark

highWaterMark: number

Optional objectMode

objectMode: boolean

Optional readableObjectMode

readableObjectMode: boolean

Optional seed

seed: number

Initial hash seed as an unsigned 32-bit integer.

Optional writableObjectMode

writableObjectMode: boolean

Methods

Optional destroy

  • destroy(this: Transform, error: Error | null, callback: function): void
  • Parameters

    • this: Transform
    • error: Error | null
    • callback: function
        • (error: Error | null): void
        • Parameters

          • error: Error | null

          Returns void

    Returns void

Optional final

  • final(this: Transform, callback: function): void
  • Parameters

    • this: Transform
    • callback: function
        • (error?: Error | null): void
        • Parameters

          • Optional error: Error | null

          Returns void

    Returns void

Optional flush

  • flush(this: Transform, callback: TransformCallback): void

Optional read

  • read(this: Transform, size: number): void

Optional transform

  • transform(this: Transform, chunk: any, encoding: string, callback: TransformCallback): void

Optional write

  • write(this: Transform, chunk: any, encoding: string, callback: function): void
  • Parameters

    • this: Transform
    • chunk: any
    • encoding: string
    • callback: function
        • (error?: Error | null): void
        • Parameters

          • Optional error: Error | null

          Returns void

    Returns void

Optional writev

  • writev(this: Transform, chunks: Array<object>, callback: function): void
  • Parameters

    • this: Transform
    • chunks: Array<object>
    • callback: function
        • (error?: Error | null): void
        • Parameters

          • Optional error: Error | null

          Returns void

    Returns void

Generated using TypeDoc