Struct PaymentGateway

Source
pub struct PaymentGateway<S: Storage, M: MonerodClient = RpcClient>(/* private fields */);
Expand description

The PaymentGateway allows you to track new Invoices, remove old Invoices from tracking, and subscribe to Invoices that are already pending.

Implementations§

Source§

impl<S: Storage + 'static, M: MonerodClient + 'static> PaymentGateway<S, M>

Source

pub fn builder( private_view_key: String, primary_address: String, store: S, ) -> PaymentGatewayBuilder<S>

Returns a builder used to create a new payment gateway.

Source

pub async fn run(&self) -> Result<(), AcceptXmrError>

Runs the payment gateway. This function spawns a new thread, which periodically scans new blocks and transactions from the configured daemon and updates pending Invoices in the database.

§Errors
Source

pub async fn status(&self) -> PaymentGatewayStatus

Returns the enum PaymentGatewayStatus describing whether the payment gateway is running, not running, or has experienced an error.

Source

pub async fn stop(&self) -> Result<(), AcceptXmrError>

Stops the payment gateway, blocking until complete. If the payment gateway is not running, this method does nothing.

§Errors
  • Returns an AcceptXmrError::StopSignal error if the payment gateway could not be stopped.

  • If the scanning thread exited with an error, returns the error encountered.

Source

pub async fn new_invoice( &self, piconeros: u64, confirmations_required: u64, expiration_in: u64, description: String, ) -> Result<InvoiceId, AcceptXmrError>

Adds a new Invoice to the payment gateway for tracking, and returns the ID of the new invoice. Use a Subscriber to receive updates on the new invoice invoice as they occur.

§Errors

Returns an error if there are any underlying issues modifying data in the database.

Source

pub async fn remove_invoice( &self, invoice_id: InvoiceId, ) -> Result<Option<Invoice>, AcceptXmrError>

Remove (i.e. stop tracking) invoice, returning the old invoice if it existed.

§Errors

Returns an error if there are any underlying issues modifying/retrieving data in the database.

Source

pub fn subscribe(&self, invoice_id: InvoiceId) -> Option<Subscriber>

Returns a Subscriber for the given invoice ID. If a tracked invoice exists for that ID, the subscriber can be used to receive updates for that invoice.

Source

pub fn subscribe_all(&self) -> Subscriber

Returns a Subscriber for all invoices.

Source

pub async fn daemon_height(&self) -> Result<u64, AcceptXmrError>

Get current height of daemon using a monero daemon remote procedure call.

§Errors

Returns an error if a connection can not be made to the daemon, or if the daemon’s response cannot be parsed.

Source

pub async fn get_invoice( &self, invoice_id: InvoiceId, ) -> Result<Option<Invoice>, AcceptXmrError>

Get the up-to-date invoice associated with the given InvoiceId, if it exists.

§Errors

Returns an error if there are any underlying issues retrieving data from the database.

Source

pub async fn get_invoice_ids(&self) -> Result<Vec<InvoiceId>, AcceptXmrError>

Get a list of all currently tracked invoice IDs.

§Errors

Returns an error if there are any underlying issues retrieving data from the database.

Source

pub fn daemon_url(&self) -> String

Returns URL of configured daemon.

Trait Implementations§

Source§

impl<S: Storage, M: MonerodClient> Clone for PaymentGateway<S, M>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S: Storage, M: MonerodClient> Deref for PaymentGateway<S, M>

Source§

type Target = PaymentGatewayInner<S, M>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &PaymentGatewayInner<S, M>

Dereferences the value.

Auto Trait Implementations§

§

impl<S, M> Freeze for PaymentGateway<S, M>

§

impl<S, M = RpcClient> !RefUnwindSafe for PaymentGateway<S, M>

§

impl<S, M> Send for PaymentGateway<S, M>

§

impl<S, M> Sync for PaymentGateway<S, M>

§

impl<S, M> Unpin for PaymentGateway<S, M>

§

impl<S, M = RpcClient> !UnwindSafe for PaymentGateway<S, M>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more