Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

Memcache invalidate entries according to a pattern?

Is there a way to invalidate entries in memcache according to a wildcard key? So if I have the following memcache keys: data/1 data/2 data/3 Is there a way I can invalidate those keys with ...
6
votes
3answers
171 views

How can I manually tell an owner-drawn WPF Control to refresh?

We are doing custom drawing in a control subclass's OnRender. This drawing code is based on an external trigger and data. As such, whenever the trigger fires, we need to re-render the control based ...
6
votes
1answer
289 views

When does one need to call revalidate() on a swing component to make it refresh, and when not?

When dealing with swing components, and when changing the components during runtime, one (often) needs to call the revalidate() method on the components in order for them to refresh. What are the ...
5
votes
2answers
3k views

Android: How to get a custom view to redraw partially?

I have a custom view that fills my entire screen. (A piano keyboard) When a user touches the key, it causes invalidate() to be called and the whole keyboard gets redrawn to show the new state with a ...
5
votes
3answers
776 views

How does ImageView just redraw part of its content when invalidate(Rect) is called?

guys I am new to Android development, just reading docs and trying the APIs. I am quit confused how ImageView managed to draw just a part of its content after an invalidate(Rect) invocation. I've ...
5
votes
2answers
1k views

Invalidating a path from the Django cache recursively

I am deleting a single path from the Django cache like this: from models import Graph from django.http import HttpRequest from django.utils.cache import ...
4
votes
2answers
526 views

Invalidate(); Vs. Update();

I have code that lets be drag around a borderless form in winforms that I've been using for several months now, which works extremely well. But when I first was given the code, they used ...
3
votes
0answers
55 views

Repeated window invalidation in GTK+: failure after several steps

I have a timer which calls a method (perform_step) every second. perform_step does some computation and invalidates my window. This works well initially but after a small number of iterations the ...
3
votes
4answers
282 views

How to invalidate the file system cache?

I want to measure/optimize the "cold boot" startup performance of an application, and it's difficult to do this without an actual reboot, which is obviously not an ideal solution. Is there a way I ...
3
votes
1answer
537 views

invalidate() inside of a thread android app

I'm new to programming androids but I have quite a bit of experience programming blackberries. I created an app that has an activity class (main.java) and a view class (game.java). Inside the view ...
3
votes
2answers
615 views

Onpaint events (invalidated) changing execution order after a period normal operation (runtime)

I have 3 data graphs that are painted via the their paint events. When I have data that I need to insert into the graph I call the controls invalidate() command. The first control's paint event ...
3
votes
1answer
686 views

ASP.NET - Invalidate browser cache

I have a question related to cache invalidation techniques... I am trying to implement a mechanism for my website, that automatically invalidates browser cache (css, images...). I want to be able to ...
2
votes
2answers
67 views

Pointers are being invalidated some how, which leads to an Access Violation

Dev Environment is VS2010 and language is mixed C# (GUI) and C++ (Sim Engine), compiling for 32-bit Windows. The exceptions occur on every version of Windows we have tested with including 32-bit XP, ...
2
votes
2answers
110 views

Invalidating deleted pointers

template<typename T> someclass<T>& operator=(const someclass<T>& other) { typename std::vector<T *>::const_iterator rhs; typename std::vector<T ...
2
votes
1answer
235 views

How to update Android Views upon modifications?

I have some methods in my View that modify some of the shapes that are drawn when called. In Java in order to make sure the component is updated I would call repaint(). Is there something that will ...
2
votes
1answer
290 views

Drawing Multiple rectangles without calling invalidate()

I'm trying to draw multiple rectangles. I want to be able to draw each rectangle by hand though. I can draw one but then once I call invalidate(), of course, the canvas gets cleared. Is there another ...
2
votes
5answers
178 views

How to grow a buffer without invalidating pointers to it?

The terms 'pool' and 'buffer' may be used interchangeably here. Suppose I have a pool I want to allocate at the beginning of the programm, as to not always call new all the time. Now, I don't want to ...
2
votes
4answers
292 views

(iphone) do I need to invalidate timer when repeats: no?

[NSTimer scheduledTimerWithTimeInterval: target: selector: userInfo: repeats:NO]; When repeats: is set to NO, do I need to invalidate the timer inside the specified selector? Thank you Edit ...
2
votes
2answers
233 views

Rules for Iterator Invalidation

What are the usual rules for Iterator invalidation when operating over STL container classes(Vector,Dequeue,list,map,multimap,set,multiset). Is it possible to categorize and sum up some general ...
2
votes
1answer
459 views

problem with calling invalidate in async task thread in Android !

I am trying to call the invalidate() from asyntask thread. I am getting this error : 10-18 15:14:30.469: ERROR/AndroidRuntime(889): Caused by: android.view.ViewRoot$CalledFromWrongThreadException: ...
2
votes
2answers
359 views

NSTimer not stopping

I have a Class with a NSTimer *myTimer; variable. At some point I do: myTimer = [NSTimer scheduledTimerWithTimeInterval:20 target:self selector:@selector(doStuff) userInfo:nil repeats: YES]; ...
2
votes
4answers
3k views

Update existing Preference-item in a PreferenceActivity upon returning from a (sub)PreferenceScreen

I have a PreferenceActivity with a bunch of (Sub)PreferenceScreens. Each such (Sub)PreferenceScreen represents an account and has the account-username as its title. PreferenceScreen root = ...
2
votes
2answers
2k views

Invalidating JPA EntityManager session

A project I am working on uses Spring 2.5 & JPA with Hibernate as a provider. My DAO classes extend JpaDaoSupport, so I get my JpaTemplate using the getJpaTemplate() method. The back-end ...
2
votes
3answers
3k views

How to find if NSTimer is active or not?

I have a something like this: NSTimer* timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self ...
1
vote
1answer
119 views

MKMapView - Redrawing overlays in the most efficient way

I have an MKMapView with 2 overlays. They represent 1. The route someone has taken. 2. A series of circular regions of interest. In order to update either of the overlays I update their data, then ...
1
vote
2answers
132 views

How to avoid blinking in Form.Invalidate()?

I'm using f.Invalidate() to repaint graphics in my C# program but the graphic blinks as it refreshes. I'm also using e.Graphics.DrawImage() inside the f_Paint() method.
1
vote
1answer
150 views

Query on invalidate() and postInvalidate() in android

Actually i want to know the difference between both and how do we called these two function. Must the two functions be only called in the class which extends View?
1
vote
0answers
239 views

Best practice for OnPaint, Invalidate, Clipping and Regions

I have a User Control with completely custom drawn graphics of many objects which draw themselves (called from OnPaint), with the background being a large bitmap. I have zoom and pan functionality ...
1
vote
2answers
147 views

How to correctly invalidate my timer in NSRunLoop

I get information from a server in my app with a secondsToEnd value and I start a counter after I've received this information. My project contains a scrollview, so to get around locking my timer due ...
1
vote
0answers
38 views

cached collection not being invalidated by Nhibernate

I have two objects - ContentPage, which has a collection of ChildLinks. ContentPage ----------- ID Title ChildLink ---------- ID ParentPageID [ContentPage] ChildPageID [ContentPage] Priority The ...
1
vote
2answers
180 views

Strange problem with [tableView reloadData]

Let have two mutable arrays, and let's have the following code: - (void)viewDidLoad { NSMutableArray *A = [[NSMutableArray alloc] init]; NSMutableArray *B = [[NSMutableArray alloc] init]; ...
1
vote
0answers
193 views

Android is redrawing all Views when applying animation on one view

I have an Application that contains one layout with sevral views, when i animate one view all views are getting redrawn! is that the normal behavior or i am doing something false ? i would like to ...
1
vote
2answers
212 views

How to invalidate screen faster?

In my current project (game of life) I need to redraw the screen as there are around 200 objects moving. I can think of two ways but have no clue which will be faster: I can either: 1) Call ...
1
vote
1answer
450 views

Refresh Android listview after scrollBy on

This is my first post on stackoverflow. I use this one some times when I have a problem and find a solution every time. But today is different. Have a non-solved problem : I have on listview and I ...
1
vote
1answer
138 views

Android For Loop Not stopping

I'm playing around with 2 d graphics on android. I'm using random generator for x and y using a for loop. weird thing is that the loop never stops: for (int i = 0; i < 5; i++){ ...
1
vote
1answer
73 views

Invalidating image too fast

I created simple app where the player moves the image to left and right. I am redrawing only the area of the player. But if the player holds the key, the movement is too fast and you cannot see the ...
1
vote
1answer
285 views

Invalidate the whole output cache in asp .net MVC 2

How is it possible to invalidate the whole output cache in asp .net mvc 2?
1
vote
2answers
2k views

Invalidate spring security session

i need to invalidate ( or kick ) user session. the application only limit user login only one user per container. i try to call removeSessionInformation from session registry, its done to unlock the ...
1
vote
2answers
3k views

How to properly invalidate JSP session?

So here is the problem. When a user logs out of my website, they can still hit the back button and continue using the site. To keep track of whether the user is logged in or not, I created a session ...
1
vote
1answer
718 views

Android refresh StateListDrawable problem

I have a strange problem with StateListDrawable or maybe (probably) I'm missing something. I created a test application for it and the same problem occurs. So, this is my StateListDrawable resourse in ...
1
vote
3answers
353 views

WPF calls not working during long method processing

The following method does not apply the wpf changes (background = red) until the 2nd method (DoWork) exits: private void change() { Background = Brushes.Red; Dispatcher.BeginInvoke((Action) ...
1
vote
1answer
358 views

Invalidating session before iPhone application quits

I would like to tell the server to invalidate an ongoing session when the user quits the iPhone application. In the app delegate, I send a request to the server in the ...
1
vote
1answer
185 views

Invalidate() command is not repainting the control

I am trying to develop a custom control which needs to have some rectangles to be drawn. Now, 1 rectangle needs to be moved so I used overrided mousemove method to get the new location and change the ...
1
vote
2answers
883 views

Refresh / Update WPF controls like win forms

changing the text of a label (or sophisticatedly we can say a text-based progress bar). in winforms you just Invalidate / Update. But how to do this in WPF without using Background Threads. ???
0
votes
0answers
40 views

draw is being constantly called in my Android view class for graph

I just wanna to draw simple graph, only few lines. But android repeatedly call onDraw() or draw() method, which I find out by Logger. I created my own class, which extends view. I only want to ...
0
votes
0answers
53 views

Android View with layer (drawing cache) redrawing entire View when invalidate(Rect) is called

I have a custom View that is backed by a software layer (via setLayerType introduced in API level 11). As I understand it, this tells Android to essentially back this view with a drawing cache and ...
0
votes
0answers
31 views

Cocoa: NSTimer gdb when invalidating

I'm using some timers and want the user to be able to cancel it before it's done, or remove it from a view after it has finished. Both of these things are supposed to be handled by a cancelAction ...
0
votes
0answers
48 views

How to close all HTTP keep-alive connections?

On Android, how do I close all idle HTTP keep-alive connections? I need this because I've changed a few settings (such as SSL certificate verification), and I'd like to make these changes take effect ...
0
votes
0answers
50 views

What is the proper way to disable NSTimer?

I am writing an app where the main view controller has several NSTimers that control different events. This works well except for a few oddball cases where the timers don't seem to get disabled when ...
0
votes
0answers
14 views

Highlighting text according to video

I am playing one video and along with that video I want to highlight the text spoken in video. I have done some coding as follows, but the video plays after the sleep time specified in updateLabel, ...

1 2 3