got first pass on the replication and balancer, passing all of the old test suite...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated / Replicant.pm
CommitLineData
26ab719a 1package DBIx::Class::Storage::DBI::Replicated::Replicant;
2
3use Moose;
4extends 'DBIx::Class::Storage::DBI', 'Moose::Object';
5
6=head1 NAME
7
8DBIx::Class::Storage::DBI::Replicated::Replicant; A replicated DBI Storage
9
10=head1 SYNOPSIS
11
12This class is used internally by L<DBIx::Class::Storage::DBI::Replicated>. You
13shouldn't need to create instances of this class.
14
15=head1 DESCRIPTION
16
17Replicants are DBI Storages that follow a master DBI Storage. Typically this
18is accomplished via an external replication system. Please see the documents
19for L<DBIx::Class::Storage::DBI::Replicated> for more details.
20
21This class exists to define methods of a DBI Storage that only make sense when
22it's a classic 'slave' in a pool of slave databases which replicate from a
23given master database.
24
25=head1 ATTRIBUTES
26
27This class defines the following attributes.
28
29=head1 METHODS
30
31This class defines the following methods.
32
33=head1 AUTHOR
34
35John Napiorkowski <john.napiorkowski@takkle.com>
36
37=head1 LICENSE
38
39You may distribute this code under the same terms as Perl itself.
40
41=cut