Exemplo n.º 1
0
 def __init__(self, session, target_host, target_port, use_transition, no_samples, content):
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     self.max_ret_items = DEFAULT_MAX_NO_RET_ITEMS
     BasicMasterRequest.__init__(self, session, target_host, target_port, use_transition, no_samples, content)
Exemplo n.º 2
0
 def __init__(self, session, target_host, target_port, use_transition, no_samples, content):
     self.slave_finished = 0
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     BasicMasterRequest.__init__(self, None, target_host, target_port, use_transition, no_samples, content)
Exemplo n.º 3
0
 def __init__(self, session, target_host, target_port, use_transition, no_samples, content):
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     self.max_ret_items = 100000
     self.timestamp_key = xes.DEFAULT_TIMESTAMP_KEY
     BasicMasterRequest.__init__(self, session, target_host, target_port, use_transition, no_samples, content)
Exemplo n.º 4
0
 def __init__(self, session, target_host, target_port, use_transition, no_samples, content):
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     self.window_size = DEFAULT_WINDOW_SIZE
     self.start_parameter = 0
     BasicMasterRequest.__init__(self, session, target_host, target_port, use_transition, no_samples, content)
Exemplo n.º 5
0
    def __init__(self, session, target_host, target_port, use_transition,
                 no_samples, process):
        self.session = session
        self.target_host = target_host
        self.target_port = target_port
        self.use_transition = use_transition
        self.no_samples = no_samples
        self.process = process

        BasicMasterRequest.__init__(self, None, target_host, target_port,
                                    use_transition, no_samples, process)
Exemplo n.º 6
0
 def __init__(self, session, target_host, target_port, use_transition,
              no_samples, content):
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     self.case_id = None
     BasicMasterRequest.__init__(self, session, target_host, target_port,
                                 use_transition, no_samples, content)
Exemplo n.º 7
0
    def __init__(self, session, target_host, target_port, use_transition,
                 no_samples, content):
        self.session = session
        self.target_host = target_host
        self.target_port = target_port
        self.content = content
        self.use_transition = use_transition
        self.no_samples = no_samples
        self.attribute_key = xes.DEFAULT_NAME_KEY

        BasicMasterRequest.__init__(self, session, target_host, target_port,
                                    use_transition, no_samples, content)
 def __init__(self, session, target_host, target_port, use_transition,
              no_samples, content):
     self.session = session
     self.target_host = target_host
     self.target_port = target_port
     self.content = content
     self.use_transition = use_transition
     self.no_samples = no_samples
     self.max_ret_items = 100000
     self.attribute_key = None
     BasicMasterRequest.__init__(self, session, target_host, target_port,
                                 use_transition, no_samples, content)
Exemplo n.º 9
0
    def __init__(self, session, target_host, target_port, use_transition,
                 no_samples, process, json_content):
        self.session = session
        self.target_host = target_host
        self.target_port = target_port
        self.json_content = json_content
        self.use_transition = use_transition
        self.no_samples = no_samples
        self.process = process

        self.PS_matrix = []
        self.duration_matrix = []

        BasicMasterRequest.__init__(self, session, target_host, target_port,
                                    use_transition, no_samples, json_content)