| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Dancer2::Session::Redis::SerializationRole; |
|
2
|
1
|
|
|
1
|
|
391
|
use strictures 1; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
29
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Dancer2::Session::Redis serialization role used in brokers. |
|
4
|
|
|
|
|
|
|
# |
|
5
|
|
|
|
|
|
|
# This file is part of Dancer2-Session-Redis |
|
6
|
|
|
|
|
|
|
# |
|
7
|
|
|
|
|
|
|
# This software is Copyright (c) 2016 by BURNERSK . |
|
8
|
|
|
|
|
|
|
# |
|
9
|
|
|
|
|
|
|
# This is free software, licensed under: |
|
10
|
|
|
|
|
|
|
# |
|
11
|
|
|
|
|
|
|
# The MIT (X11) License |
|
12
|
|
|
|
|
|
|
# |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
BEGIN { |
|
15
|
1
|
|
|
1
|
|
80
|
our $VERSION = '0.001'; # fixed version - NOT handled via DZP::OurPkgVersion. |
|
16
|
|
|
|
|
|
|
} |
|
17
|
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
|
3
|
use Moo::Role; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
5
|
|
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
############################################################################ |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
requires 'decode'; |
|
23
|
|
|
|
|
|
|
requires 'encode'; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
############################################################################ |
|
26
|
|
|
|
|
|
|
1; |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__END__ |