def get_values_in_store_async(self, indices, attributes): result = self.get_values_in_store(indices, attributes) return FakeASyncRequest(result)
def set_values_in_store_async(self, indices, attributes, list_of_values_to_set): result = self.set_values_in_store(indices, attributes, list_of_values_to_set) return FakeASyncRequest(result)
def dummy_factory(): return FakeASyncRequest()