move abstract fuctions to end of file

This commit is contained in:
Dietmar Maurer 2017-01-13 14:45:56 +01:00
parent b639f458c5
commit fbc42b33e7

View File

@ -1636,6 +1636,12 @@ sub atfork_handler {
warn $@ if $@;
}
sub run {
my ($self) = @_;
$self->{end_cond}->recv;
}
sub new {
my ($this, %args) = @_;
@ -1721,6 +1727,8 @@ sub new {
return $self;
}
# abstract functions - subclass should overwrite/implement them
sub auth_handler {
my ($self, $method, $rel_uri, $ticket, $token) = @_;
@ -1766,10 +1774,5 @@ sub remote_node_ip {
# return $remip;
}
sub run {
my ($self) = @_;
$self->{end_cond}->recv;
}
1;