A task that returns a result and may throw an exception.
1
vote
4answers
39 views
How to wait for all callables to finish executing before proceeding?
I have the following code hashed out:
public class MyCallable implements Callable<Long> {
@Override
public Long call() throws Exception {
// Do stuff...
}
}
public class ...
1
vote
3answers
46 views
How do i get Vector<type> Arraylist<type> as return of call()?
how do I get the following Java code to work:
public class Worker implements Callable<myObject>{
@Override
public ArrayList<myObject> call() throws Exception {
...
4
votes
3answers
67 views
Using callable(x) vs. hasattr(x, “__call__”)
I'm writing Python that targets versions 3.2 and higher. It looks like using the built-in function callable is the most straightforward and efficient way to do this. I've seen recommendations for ...
0
votes
1answer
57 views
TypeError: 'int' object is not callable(Pygame)
I am attempting to make a floor that loads at the bottom of the screen for little platformer. I am doing it the this way also so later on it will be easier(I think) to have the floor load only in the ...
4
votes
2answers
31 views
class variable functions
Say $this->varname is equal to a string for which is_callable() returns true. To call it I'd have to do $temp = $this->varname; $temp(); or... is there another way I could call it without ...
0
votes
1answer
53 views
A generic callable
I am trying to implement a generic callable to delegate the modification of different types of accounts.
The code looks like this:
import java.util.concurrent.Callable;
class task<T extends ...
2
votes
2answers
139 views
Submit tasks with delay based on token
guys. I have a task I cannot wrap my head around since I am quite new to multithreading. I want to write a class which will maintaing the following semantics:
interface TokenAwareTaskExecutor(){
...
1
vote
2answers
58 views
use of callable in php
I am trying to mimic php's inbuilt usort function definition in my implementation below:
class heapSort {
static function hsort(array &$array, callable $cmp_function){
// logic
}
}
...
0
votes
1answer
35 views
Callable and Networkmainthread Error
I'm doing some networking operation and as you know with honeycomb they should be done on another thread instead UIthread otherwise it gives networkmainthread error. In my case I have to get return ...
0
votes
1answer
264 views
get client IP address for each request in mule
I launched a wsdl with cxf services in mule. I passed client Ip address as a variable to java class in xml mule config.
I implemented a callable class for getting Ip address and inserting ip in ...
1
vote
2answers
109 views
How I can pass callable object to function as parameter
In c++ standard library almost all algo function takes a callable object as a argument. Now I want to try this thing with my program. I opened the the headers for function like find_if or search_n() ...
0
votes
2answers
55 views
Why set the interrupt bit in a Callable
So, this resource (http://www.ibm.com/developerworks/java/library/j-jtp05236/index.html) suggest to set the interrupt bit in a Thread when that Thread does not deal with the interrupt itself, "so that ...
3
votes
1answer
81 views
Serialization of local class returned from Callable
This is a brainscratcher.
I know this actual code is horrible on so many levels. My question is not how to do this (I know about static initialization blocks), but why this doesn't work, for the ...
3
votes
2answers
127 views
Unit test succeeds in debug mode but fails when running it normally
Why does my unit test succeed in debug mode but fail when running it normally?
public class ExecutorServiceTest extends MockitoTestCase{
private int numThreads;
private ExecutorService pool;
...
1
vote
2answers
57 views
How do I prevent my callable Lua table passing itself as an argument to __call?
Say I have the following code:
local t = {};
setmetatable(t, {__call=print});
t(3, 5, 7)
Instead of printing:
3 5 7
it prints:
table: 0x9357020 3 5 7
The id of the table is that ...
0
votes
0answers
143 views
Pass Parameter through Callable - Jave, Android
I have managed to use Callable to pass my procedure to another class, the class then calls it once done. The class creates a HashMap of String and I want to be able to pass that to the callable ...
0
votes
1answer
59 views
GUI Thread job is not called from callable
I am trying to update the UI from a callable, but fail.
Why is the System.out.println("UI thread."); never called?
I am using SWT.
Callable<Boolean> callable = new Callable<Boolean>() {
...
2
votes
3answers
374 views
Actual implementation of Callable and Future
I am in the process of understanding fine grain util.concurrency. Where is implementation of the Java Callable and Future located in the JVM ?
I have found the Future class where it describes the ...
1
vote
2answers
56 views
making a class callable in same instance
class Foo(object):
def tick(self):
print("something")
class Bar(object):
def __init__(self):
self.foo = Foo()
def tick(self):
#Here's what I do....
...
1
vote
2answers
91 views
dynamically adding callable to class as instance “method”
I implemented a metaclass that tears down the class attributes for classes created with it and builds methods from the data from those arguments, then attaches those dynamically created methods ...
-1
votes
1answer
346 views
Java - How to make class that implements callable and extends FutureTask? [closed]
I have a weird task from my teacher and I am not quite sure how to do that:
There are two classes: Server and Agent.
Agent generates math.random() values and Server gathers them and sends to the ...
0
votes
1answer
114 views
Futures, TimeoutException, and Callables with finally blocks
Will a finally block withing a thread be called if the Callable is canceled via future.get(timeout, TimeUnit.SECONDS)?
class MyCallable implements Callable<Future<?>>{
public ...
1
vote
2answers
345 views
How to expose a web-service with cxf:proxy-service
I am trying to expose a simple greeting web-service using "cxf:proxy-service" in mule. Given below is my flow.
<flow name="WS_In">
<http:inbound-endpoint ...
0
votes
1answer
54 views
Construct a callable object from a string representing its name in Python
Let's say I have a class like this
class MyClass(AnotherClass):
def __init__(self, arg1, arg2):
self.arg1 = arg1
self.arg2 = arg2
def f(self):
#dostuff
And I have the string "my ...
0
votes
3answers
227 views
Python 'str' object is not callable Python 2.7.3
I am currently writing a trade game, where users connect to a server, then trade with one another and earn money, etc.
But when I try
if(input.lower() == 'sell'):
sMaterial = ...
1
vote
1answer
125 views
Java Multithread. How to halt the threads and to free the launcher?
I have this using: Spring MVC (Controller + Service + ThreadPoolTaskExecutor), Callable and Future.
@Controller
launch-method [invokes Service:launch-method and get result with Future]
...
0
votes
1answer
78 views
How to access call parameters and arguments with __getattr__
I have the following code, where most of the code seem to look awkward, confusing and/or circumstantial, but most of it is to demonstrate the parts of the much larger code where I have a problem with. ...
0
votes
1answer
408 views
Spring MVC How to use AsyncTaskExecutor from Controller
I need to execute some code from the Controller in different threads.
My structure:
@Controller
MyController
//invoked from frontend
@RequestMapping
MyMethod
Loop
...
0
votes
3answers
250 views
How to pass arguments to callable method?
I have method, in this method may be happened fatal error, for catching this error I make this
class a {
function shutDownFunction() {
$error = error_get_last();
if ...
0
votes
2answers
402 views
Why is 'module' object not callable? [duplicate]
Possible Duplicate:
TypeError: ‘module’ object is not callable
This is my very first Python attempt, just trying to regain basic programming knowledge after a 10 year silence in a, for me, ...
-1
votes
3answers
196 views
FutureTask and Callable usage
i have a functionality to implement for which I am thinking about using FutureTask and callable calsses.just want to verify if I can use this and if it is correct to use these classes in such ...
0
votes
1answer
164 views
Why am I getting a NullPointerException when fetching values from Futures?
I'm using and ExecutorService to concurrently run some Callables. Here's a simplified version of my code:
ArrayList<Book> objResults = new ArrayList<Book>();
ExecutorService esrExecutor = ...
0
votes
1answer
54 views
ExecutorService-like class where user controls when Callables are called
I was using an ExecutorService to schedule tasks to be executed in future. After seeing some "odd" behavior where my Callable was getting executed before I called get() on the Future object returned ...
1
vote
3answers
140 views
'int' object is not callable while calling a function
I am an amateur programmer who is working on a console dice roller, quite more complex than the traditional ones. So far I am having trouble with this function:
def multiRoll(dice, amount):
...
0
votes
0answers
50 views
multithreaded web crawler storing results in future object
synchronized public void run() {
ExecutorService exec = Executors.newFixedThreadPool(numOfCrawlers);
String si = null;
while (!list.isEmpty()) {
synchronized(this){
si ...
7
votes
4answers
220 views
Python property callable
Is there any way to have a property and a method with the same name?
I mean a property that can be used the usual way and to be callable at the same time?
Like this:
>>> b = Book()
...
1
vote
2answers
62 views
java execturorService - submit task and catch exception
I am trying to submit a task to an ExecutorService in Java. It either takes a Callable, which allows to throw an Exception, or it takes a Runnable. My use case is as foolows: I would like to schedule ...
0
votes
1answer
182 views
Getting java.lang.NoSuchFieldError: LINUX in Callable thread?
I am running Selenium test cases by using Callable threads and I am getting java.lang.NoSuchFieldError: LINUX exception at executerService.submit(callable).get() this line when I tried to run test ...
1
vote
2answers
145 views
Callable CoffeeScript classes
Consider the following CoffeeScript class:
class Event
trigger : (args...) =>
...
bind : (args...) =>
...
The use case would be:
message_received = new Event()
...
1
vote
3answers
223 views
Callable interface Loop stoping main method to execute further
I am trying to send request to server in every 2 seconds in a thread and check if there is something for me give it back to me....For getting value i have to use callable. I am not able to figure out ...
0
votes
1answer
71 views
Python String item not callable/math
I have to write a program that given the number below, s, finds the maximum product of a given length of consecutive numbers within the larger number. I have the framework of the code but in the line ...
2
votes
2answers
544 views
Proper way to handle Thread.interrupted() in a Callable?
What is the proper way to handle Thread.interrupted() in a Callable? I'm guessing that the callable should throw an InterruptedException; for example:
public class MyCallable implements ...
-1
votes
2answers
595 views
Java jsoup using threads not working [closed]
I have like pages something like this:
www.foo1.bar
www.foo2.bar
www.foo3.bar
.
.
www.foo100.bar
I am using library jsoup and connecting to each page in the same time with Thread :
Thread ...
3
votes
3answers
255 views
Constructor for callable object in JavaScript
How can I make constructor for callable object in JavaScript?
I've attempted various ways, like following. The example there is just shortened example of actual object.
function CallablePoint(x, y) ...
2
votes
1answer
56 views
Do spurious wakeups affect Future.get()?
Is Future.get( timeout, unit ) susceptible to the same type of spurious wakeup as documented for Object.wait() and Condition.await() in Javadoc?
someType result;
Future<someType> future = ...
0
votes
2answers
446 views
How to make Callable wait till execution?
I have One Callable which I invoked using
FutureTask<Integer> task = new FutureTask<Integer>(new MyCallable(name, type));
pool = Executors.newSingleThreadExecutor();
pool.submit(task);
...
3
votes
1answer
165 views
How to get a string value from a thread at fixed intervals while able to pause/resume?
I have made a small swing application for my personal use. This app connects to internet, retrieves a text file, displays its contents in a jTextArea and saves the text file locally (in my hardisk). ...
0
votes
1answer
103 views
Synchronizing issue: I want the main thread to be run before another thread but it sometimes doesn´t
I have done my own small concurrency framework (just for learning purposes) inspired by the java.util.concurrency package. This is about the Callable/Future mechanism. My code below is the whole one ...
2
votes
2answers
97 views
Determining which Callables are currently running in ExecutorService
I'd like to be able to get the Callables that I've submitted to an ExecutorService (specifically a ThreadPoolExecutor) which are currently in progress (so they're not available via getQueue()).
I ...
0
votes
2answers
101 views
php: Why preg_replace_callback does not allow built in php functions, just anonymous user functions?
This does not work, and outputs an empty string:
$check["pattern"] = "correct";
$text = "Could this be correct?";
echo preg_replace_callback($check["pattern"],ucfirst,$text);
Would have been nice ...
