Algorithm-Paxos

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Algorithm-Paxos
requires:
  Moose: 0
  Moose::Role: 0
  Sub::Exporter: 0
  Sub::Exporter::Util: 0
  Throwable::Error: 0
  Try::Tiny: 0
  namespace::autoclean: 0
  perl: 5.10.0
version: 0.001

Makefile.PL  view on Meta::CPAN

  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Algorithm::Paxos",
  "PREREQ_PM" => {
    "Moose" => 0,
    "Moose::Role" => 0,
    "Sub::Exporter" => 0,
    "Sub::Exporter::Util" => 0,
    "Throwable::Error" => 0,
    "Try::Tiny" => 0,
    "namespace::autoclean" => 0
  },
  "VERSION" => "0.001",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
  my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};

lib/Algorithm/Paxos/Role/Acceptor.pm  view on Meta::CPAN

package Algorithm::Paxos::Role::Acceptor;
{
  $Algorithm::Paxos::Role::Acceptor::VERSION = '0.001';
}
use Moose::Role;
use namespace::autoclean;

# ABSTRACT: An Acceptor role for the Paxos algorithm

use Algorithm::Paxos::Exception;

has [qw(last_prepared_id last_accepted_id)] => (
    isa     => 'Str',
    is      => 'rw',
    default => 0
);

lib/Algorithm/Paxos/Role/Learner.pm  view on Meta::CPAN

package Algorithm::Paxos::Role::Learner;
{
  $Algorithm::Paxos::Role::Learner::VERSION = '0.001';
}
use Moose::Role;
use namespace::autoclean;

# ABSTRACT: A Learner role for the Paxos algorithm

has proposals => (
    isa     => 'HashRef',
    traits  => ['Hash'],
    default => sub { +{} },
    handles => {
        learn          => 'set',
        proposal_ids   => 'keys',

lib/Algorithm/Paxos/Role/Proposer.pm  view on Meta::CPAN

package Algorithm::Paxos::Role::Proposer;
{
  $Algorithm::Paxos::Role::Proposer::VERSION = '0.001';
}
use 5.10.0;
use Moose::Role;
use namespace::autoclean;

# ABSTRACT: A Proposer role for the Paxos algorithm

use Try::Tiny;
use Algorithm::Paxos::Exception;

has acceptors => (
    isa     => 'ArrayRef',
    writer  => '_set_acceptors',
    traits  => ['Array'],

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.288 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )