Cache::Memcached::AnyEvent::Protocol - Base Class For Memcached Protocol


Cache-Memcached-AnyEvent documentation Contained in the Cache-Memcached-AnyEvent distribution.

Index


Code Index:

NAME

Top

Cache::Memcached::AnyEvent::Protocol - Base Class For Memcached Protocol

SYNOPSIS

Top

    package NewProtocol;
    use strict;
    use base 'Cache::Memcached::AnyEvent::Protocol';

METHODS

Top

new

prepare_handle


Cache-Memcached-AnyEvent documentation Contained in the Cache-Memcached-AnyEvent distribution.

package Cache::Memcached::AnyEvent::Protocol;
use strict;

sub new {
    my $class = shift;
    my $self  = bless {@_}, $class;
    return $self;
}

sub prepare_handle {}

1;

__END__