DefaultThreadDict
digraph inheritance992dc03bf1 {
bgcolor=transparent;
rankdir=UD;
ratio=compress;
size="8.0, 12.0";
"DefaultThreadDict" [URL="#taurus.core.util.containers.DefaultThreadDict",color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,target="_top",tooltip="a join venture between thread and default dict"];
"defaultdict_fromkey" -> "DefaultThreadDict" [arrowsize=0.5,style="setlinewidth(0.5)"];
"ThreadDict" -> "DefaultThreadDict" [arrowsize=0.5,style="setlinewidth(0.5)"];
"ThreadDict" [URL="taurus.core.util.containers-ThreadDict.html#taurus.core.util.containers.ThreadDict",color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,target="_top",tooltip="Thread safe dictionary with redefinable read/write methods and a"];
"defaultdict" [URL="taurus.core.util.containers-defaultdict.html#taurus.core.util.containers.defaultdict",color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,target="_top",tooltip="defaultdict(default_factory=None, /, [...]) --> dict with default factory"];
"defaultdict_fromkey" [URL="taurus.core.util.containers-defaultdict_fromkey.html#taurus.core.util.containers.defaultdict_fromkey",color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,target="_top",tooltip="Creates a dictionary with a default_factory function that creates new"];
"defaultdict" -> "defaultdict_fromkey" [arrowsize=0.5,style="setlinewidth(0.5)"];
}
- class DefaultThreadDict(other=None, default_factory=None, read_method=None, write_method=None, timewait=0.1, threaded=True)[source]
a join venture between thread and default dict This class merges the two previous ones.
Import from
taurus.core.util.containers
as:from taurus.core.util.containers import DefaultThreadDict