Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
12answers
18k views

What is a “callable” in Python?

Now that it's clear what a metaclass is, there is an associated concept that I use all the time without knowing what it really means. I suppose everybody made once a mistake with parenthesis, ...
9
votes
1answer
2k views

What is the difference between a function object and a callable object?

I recently saw the presentation about the changes in ECMAScript 5. And there was a slide with this statement: Function vs Callable typeof f === 'function' // → f is Callable ...
9
votes
6answers
936 views

How can I wrap a method so that I can kill its execution if it exceeds a specified timeout?

I have a method that I would like to call. However, I'm looking for a clean, simple way to kill it or force it to return if it is taking too long to execute. I'm using Java. to illusrate: ...
4
votes
5answers
3k views

Java: Parameterized Runnable

Standard Runnable interface has only non-parametrized run() method. There is also Callable<V> interface with call() method returning result of generic type. I need to pass generic parameter, ...
3
votes
3answers
79 views

Is possible to control the amount of time that each thread executes in Java?

I want to control the amount of time that each thread uses. One thread does some processing and another processes data in the database, but the insertion is slower than processing because of the ...
3
votes
2answers
130 views

boost multiple calls to class method

In boost::thread is it possible to call a class method with out making the class callable and implementing the void operator()() as in just call the class method for(int i=0;i<5;i++) ...
3
votes
3answers
301 views

How to return object from Callable()

I'm trying to return a 2d array from call(), I'm having some issues. My code so far is: //this is the end of main Thread t1 = new Thread(new ArrayMultiplication(Array1, Array2, length)); ...
3
votes
3answers
271 views

alternative to callable(),for use in Python 3

I looked at this thread but some of the concepts are above my current level. In Python 2.x, the callable() built-in method exists; is there a simple way to check to see if something is callable or not ...
3
votes
1answer
156 views

Filling SWT table object using a separated thread class

I've got a code snippet by the swt team that does exactly what I need. However, there is a part I want to separate into another class, in particular, the whole inline stuff. In response to my former ...
3
votes
4answers
2k views

invokeAll() is not willing to acept a Collection<Callable<T>>

I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads); class DocFeeder implements Callable<Boolean> {....} ... ...
2
votes
1answer
65 views

Why are my anonymous functions evaluating to NULL in Symfony 2.0?

I just started playing around with Symfony 2.0 and immediately ran into an error: [28-Nov-2011 16:51:26] PHP Fatal error: Uncaught exception 'InvalidArgumentException' with message 'A callable ...
2
votes
1answer
58 views

Why the exception is not being thrown?

I have this simple piece of code: @Override public Object call() throws Exception { try (Connection conn = ConnectionPool.getConnection()) { pageDAO = new PageDAO(conn); linkDAO = ...
2
votes
4answers
377 views

java Callable FutureTask Excecuter: How to listen to finished task

I'm quite new to executer services. Liked doing everything myself, but I think it's time to trust these services. I want to hand by Executer a Runnable. The executer wraps that in a FutureTask and ...
2
votes
3answers
129 views

returning a user defined function name when using a decorator with a callable object

Consider the following code fragment. def print_timing(func): import time def wrapper(*args, **kwargs): t1 = time.time() res = func(*args, **kwargs) t2 = time.time() ...
2
votes
2answers
176 views

Java multithreading / synchronization issue

I am working on a large scale dataset and after building a model, I use multithreading (whole project in Java) as follows: OutputStream out = new BufferedOutputStream(new FileOutputStream(outFile)); ...
2
votes
2answers
627 views

How to ensure garbage collection of a FutureTask that is submitted to a ThreadPoolExecutor and then cancelled?

I am submitting Callable objects to a ThreadPoolExecutor and they seem to be sticking around in memory. Looking at the heap dump with the MAT tool for Eclipse see that the Callable objects are being ...
2
votes
3answers
159 views

Built-in function to get value of object if callable?

class Thing(): xyz = "I'm a string" class Truc(): def xyz(self): return "I'm a function" def valueOrCalledValue(input): if callable(input): return input() else: ...
2
votes
1answer
214 views

How do you make a callable object in Clojure?

How do you make a callable type or object in Clojure? For example, how could I define a record Foo taking a single value :bar which could be called to print that value? user=> (def foo (Foo. ...
2
votes
2answers
171 views

modifying a python callable so it calls before() , actual function then after()

I am not sure if this is the best way to have before and after functions be called around a function f1(). class ba(object): def __init__(self, call, before, after): self.call = call ...
2
votes
1answer
303 views

python function parameter evaluation model

I was looking at an article on Peter Norvig's website, where he's trying to answer the following question (this is not my question, btw) "Can I do the equivalent of (test ? result : alternative) in ...
2
votes
3answers
185 views

How much logic is it “right” to put in a Callable?

I'm using callables quite often , and I've stubled upon a question that irritates me: Lets say that to run function foo() , one needs to do a couple of checks first. Should you 1. Insert the ...
1
vote
5answers
79 views

Populate list or tuple from callable or lambda in python

This is a problem I've come across a lot lately. Google doesn't seem to have an answer so I bring it to the good people of stack overflow. I am looking for a simple way to populate a list with the ...
1
vote
1answer
49 views

pass android function that uses a param

I've been using Callable, but now I need the function to use a param in the call method. I get that this isn't a capability of call so how can I do this? What I currently have (wrong): AsyncTask ...
1
vote
2answers
99 views

How do I efficiently process multiple results from an Executor Service

I'n new to ExecutorService, but am unsure about my approach to this. I could be dealing with up to 100 threads for a known task. I'm using the general format below, where I create a List of ...
1
vote
0answers
158 views

changing the color of Phone number(UITextView…with detect Phone Number enabled in xib file) in objective c

Can we change from default blue color of Phone number(UITextView...with detect Phone Number option enabled in xib file) to other color in objective c? For example number like 00471122345 shown in ...
1
vote
4answers
75 views

How to get information from several threads? Java

I want to start several callable threads in the same time(in loop), and want to return some information from everyone in main thread. How to realise this?
1
vote
1answer
105 views

how to hijack a Callable and execute hidden methods before call()

I'm adding implementations to some subsystems in a bigger project (HypergraphDB), and I should avoid to modify important code. In this project, there are about 70 Callable objects which define ...
1
vote
4answers
1k views

What's the difference between Future and FutureTask in Java?

Since use ExecutorService can submit a Callable task and return a Future, why need to use FutureTask to wrap Callable task and use the method execute? I feel they both do the same thing.
1
vote
2answers
121 views

Value gets changed upon comiting. | CallableStatements

I having a weird problem with a DAO class and a StoredProcedure, what is happening is that I use a CallableStatement object which takes 15 IN parameters, the value of the field id_color is retrieved ...
1
vote
2answers
119 views

Invoke python callable with an arg list

Simple question: How can I pass an arbitrary list of args to a python callable? Let's say I want to invoke a function from the command line, like so: my_script.py foo hello world with the ...
1
vote
3answers
762 views

On reference_wrapper and callable objects

Given the following callable object: struct callable : public std::unary_function <void, void> { void operator()() const { std::cout << "hello world" << ...
1
vote
3answers
579 views

Java - SwingWorker - problem

I am developing a Java Desktop Application. This app executes the same task public class MyTask implements Callable<MyObject> { in multiple thread simultaneously. Now, when a user clicks on a ...
1
vote
2answers
352 views

PHP Callable Object as Object Member

I have a class Logger which, among other things has a method Log. As Log is the most common use of the Logger instance, I have wired __invoke to call Log Another class, "Site" contains a member ...
1
vote
1answer
283 views

Is there a way to have callable objects in Groovy?

If for example I have a class named A. Can I make an object be callable, just like Python does? For example : def myObject = new A() myObject() and that would call some object method. Can it be ...
1
vote
2answers
697 views

How to terminate CXF webservice call within Callable upon Future cancellation

Edit This question has gone through a few iterations by now, so feel free to look through the revisions to see some background information on the history and things tried. I'm using a ...
1
vote
4answers
2k views

How to schedule a Callable to run on a specific time?

I need to run a callable at a specific time of day. One way to do it is to calculate the timediff between now and the desired time , and to use the executor.scheduleAtFixedRate . Have a better idea? ...
0
votes
2answers
94 views

Event Driven Future<V> - Thread Pool

We use callable<V> and Future<V> to receive the result of a terminated thread from a thread pool. We should call get() to receive the returned result. My problem is: it is not event ...
0
votes
0answers
54 views

why accessing hidden methods in Callable Object doesn't work and blocks call?

I need to do some tinkering with lots of Callable objects, for which I need to find a way to access parts of it, before call(). I move the data in the Callable that I want to access into fields, and ...
0
votes
4answers
180 views

Parallel execution of callables

I'd like to execute multiple callables parallel. But it seems that the ExecutorService always waits until all callables are finnished. I've tried the following: final int nThreads = 10; ...
0
votes
1answer
46 views

What is the exact requirement for defining a python tp_call function?

I am binding C++ classes to Python and have come to an interesting solution to a previous problem, unfortunately this has lead to another question that there seems to be no easy answer too. I am ...
0
votes
0answers
169 views

“List object not callable”

I'm currently writing a Python based tool for Maya. I'm using a line of code which I have used in countless other sections of other tools, and for some reason it refuses to work this time round. I ...
0
votes
5answers
1k views

Python: TypeError: 'list' object is not callable

I am trying to run this code where I have a list of lists. I need to add to inner lists, but I get the error TypeError: 'list' object is not callable. Can anyone tell me what am I doing wrong here. ...
0
votes
2answers
376 views

Stop Executor when a Callable returns a specific result

I'd like to stop an Executor from running any more Future objects even if they have been submitted to the Executor. Getting multiple threads running though an Executor all works fine and well but the ...
0
votes
1answer
123 views

WxPython - Dialog, module object is not Callable

i have a custom Dialog class in file Dialog1.py class Dialog1(wx.Dialog): def __init__(self, prnt): wx.Dialog.__init__(self, id=wxID_DIALOG1, name='Dialog1', parent=prnt, ...