EventCloseReason

class vallenae.processor.EventCloseReason(value)[source]

Reason the Event Builder closed an event data set.

__init__(*args, **kwds)

Methods

conjugate

Returns self, the complex conjugate of any int.

bit_length()

Number of bits necessary to represent self in binary.

bit_count()

Number of ones in the binary representation of the absolute value of self.

to_bytes([length, byteorder, signed])

Return an array of bytes representing an integer.

from_bytes(bytes[, byteorder, signed])

Return the integer represented by the given array of bytes.

as_integer_ratio()

Return integer ratio.

__init__(*args, **kwds)

Attributes

real

the real part of a complex number

imag

the imaginary part of a complex number

numerator

the numerator of a rational number in lowest terms

denominator

the denominator of a rational number in lowest terms

DT1X_EXPIRED

Time between first-hit and last seen exceeded DT1X-Max.

DTNX_EXPIRED

Time between two consecutive hits exceeded DTNX-Max.

DUPLICATE_CHANNEL

A channel produced a second hit while allow_multiple_hits_per_channel was disabled.

END_OF_STREAM

No more hits available; emitted by flush.

DT1X_EXPIRED = 1

Time between first-hit and last seen exceeded DT1X-Max.

DTNX_EXPIRED = 2

Time between two consecutive hits exceeded DTNX-Max.

DUPLICATE_CHANNEL = 3

A channel produced a second hit while allow_multiple_hits_per_channel was disabled.

END_OF_STREAM = 4

No more hits available; emitted by flush.

conjugate()

Returns self, the complex conjugate of any int.

bit_length()

Number of bits necessary to represent self in binary.

>>> bin(37)
'0b100101'
>>> (37).bit_length()
6
bit_count()

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

>>> bin(13)
'0b1101'
>>> (13).bit_count()
3
as_integer_ratio()

Return integer ratio.

Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.

>>> (10).as_integer_ratio()
(10, 1)
>>> (-10).as_integer_ratio()
(-10, 1)
>>> (0).as_integer_ratio()
(0, 1)
real

the real part of a complex number

imag

the imaginary part of a complex number

numerator

the numerator of a rational number in lowest terms

denominator

the denominator of a rational number in lowest terms