This pattern is used to represent the state of an object.

learn more… | top users | synonyms

5
votes
3answers
2k views

Another question about iPhone application state

I have another question about restoring application state, on the iPhone. Simple data (like the selected tab) can be stored in NSUserDefaults, but it is not enough. I want to restore the whole state, ...
3
votes
1answer
300 views

Propogation of State Monad

I have the following function for walking around "edges" of the "graph" of my game world. It alters the state of the world--specifically, the player's location. I need to report a message alerting the ...
9
votes
5answers
5k views

How to restore a minimized Window in code-behind?

This is somewhat of a mundane question but it seems to me there is no in-built method for it in WPF. There only seems to be the WindowState property which being an enum does not help since i cannot ...
5
votes
1answer
1k views

Upgrade from .NET 3.0 to 3.5: Sites set to StateServer revert to InProc when in Web Garden

Scenario: Take a server running .NET 3.0 and an ASP.NET Web site running in an application pool that has Web gardens enabled (number of processes: 3). The web.config configuration is as follows: ...
2
votes
4answers
1k views

How to avoid long switch ..need help refactoring

i needed help refactoring the following class, Following is a class Operation with variety of Operations in switch : i want to avoid the switch statement.I read few articles on using polymorphism ...
2
votes
1answer
866 views

TransactionScope and rolling back object state

I'm looking for a solution to a design problem. This will take a bit of explaining. I would post code, but that woul make this even longer. I have a custom generic collection I use to hold ...
2
votes
2answers
4k views

Modelstate with Ajax Form

I'm using an AJAX form to update an item to the database. When it gets done, it returns a partial view that re-lists all the items and displays them all in a table. The problem occurs when I have to ...
1
vote
1answer
3k views

Android - Save activity state when starting new activity

I'm currently working an application that should have the following behavior : In one of the activities, the user can select different items into a list. While doing that, he should be able to take a ...
0
votes
5answers
321 views

Atomic state storage in Python?

I'm working on a project on an unreliable system which I'm assuming can fail at any point. What I want to guarantee is that if I write_state and the machine fails mid-operation, a read_state will ...
15
votes
2answers
262 views

Scala: collecting updates/changes of immutable state

I'm currently trying to apply a more functional programming style to a project involving low-level (LWJGL-based) GUI development. Obviously, in such a case it is necessary to carry around a lot of ...
8
votes
4answers
352 views

Clojure states within states within states

I'd love to hear what advice the Clojure gurus here have about managing state in hierarchies. I find I'm often using {:structures {:like {:this {:with {:many 'levels}} } } } and if I want to track ...
7
votes
1answer
654 views

State Machine, Model Validations and RSpec

Here's my current class definition and spec: class Event < ActiveRecord::Base # ... state_machine :initial => :not_started do event :game_started do transition :not_started ...
6
votes
4answers
2k views

Alternatives to HTTP Session state in plain-vanilla .NET web services app

After a long struggle with the Page Lifecycle in ASP.NET and its performance, we've begun refactoring our web app to implement web services (plain-vanilla .asmx .NET web-services) and jQuery on the ...
6
votes
3answers
7k views

GridView is scrolling back to top after row selection

I've got one long GridView control on ma website. It allows row selection. The problem is, when I scroll down this GridView and select some of the bottom rows the selection occurs, but whole GridView ...
5
votes
1answer
173 views

How should I avoid memoization causing bugs in Ruby?

Is there a consensus on how to avoid memoization causing bugs due to mutable state? In this example, a cached result had its state mutated, and therefore gave the wrong result the second time it was ...
5
votes
4answers
5k views

What is the default drawable for pressing a list item

When the user presses a ListView item (android:state_pressed="true") it flashes a shade of yellow (or you can press and hold). What drawable is this? I've created my own selector because I want my ...
4
votes
2answers
674 views

Saving the state of a program to allow it to be resumed

I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x ...
4
votes
6answers
11k views

Android: Check if service is running via. bindService

What would be the best way to check if an Android service is running? I am aware of the ActivityManager API, but it seems like the use of the API is not advised for the scenarios similar to mine ...
3
votes
2answers
1k views

Android Viewholder for ViewPager

Hello I am using a ViewPager but I would now like to retain states, instead of having cells regenerated. I notice viewpager is very similar to a custom adapter for listviews, and they function ...
3
votes
4answers
2k views

Android: saving application state when going to the “background”

I have a complex Android app with a decent amount of application state that needs to be persisted (in a specific format). Writing out the data is not an instantaneous operation and so it would be ...
3
votes
2answers
1k views

Three State Treeview Windows Forms

One of the frustrations with the standard TreeView is that you can't show a partial selection to indicate that some of the children are selected. A partial selection in a complex tree allows the user ...
3
votes
2answers
811 views

Transition methods in state design pattern

I have a state machine with many states A--B--C--D--E. I have many transitions from C for example to A if some condition is verified. For every state I have a class extending abstract class Stateand I ...
3
votes
4answers
570 views

Maintaining state in the application server or in the database?

REST advocates web applications without client state on the server. The famous shopping cart example is translated to a resource which typically resides in a database. I wonder if it is a good ...
3
votes
1answer
662 views

How to tell if system state is idle asleep etc in vb6

I'm attempting to make my own instant messenger and want the user to go into idle/away mode if the computer hasn't been used in so long. Does anyone have a great idea on how to do this?
3
votes
4answers
836 views

Best way to load an application like it was in its previous state when it was terminated

I would like to learn the best practices in reloading the application state, such that when my app is started, it should automatically load the "correct" view/subview when it is opened again. In my ...
2
votes
1answer
1k views

Working with state in Backbone.js & logging in a user

I need to check that a user have logged in and been authenticated before letting my him or her use my backbone.js-based application. The user authentication is stored in a native backbone model as ...
2
votes
1answer
635 views

Different lexer rules in different state

I've been working on a parser for some template language embeded in HTML (FreeMarker), piece of example here: ${abc} <html> <head> <title>Welcome!</title> </head> ...
2
votes
3answers
789 views

Storing entire process state on disk and restoring it later? (On Linux/Unix)

I would like to know: Is there a system call, library, kernel module or command line tool I can use to store the complete state of a running program on the disk? That is: I would like to completely ...
2
votes
2answers
508 views

Column type and size for international country subdivisions (states, provinces, territories etc)

I apologize if this is a duplication. What column standardization would you use for storing international country subdivision data? For example, if it was just US and Canada I believe all ...
2
votes
2answers
430 views

ASP.NET Page.Cache versus Page.Application storage for data synchronization?

Both Page.Cache and Page.Application can store an application's "global" data, shared among requests and threads. How should one storage area be chosen over the other considering scenarios of data ...
2
votes
3answers
4k views

Remembering a jQuery draggable tool palette position between page refreshes

I have a tool palette which shows up when an admin user is logged in to a site. The palette is draggable (via jQueryUI.draggable) and I would like it to remember the position between ...
1
vote
2answers
496 views

Get the html of the javascript-rendered page (after interacting with it)

I would like to be able to save the state of the html page after I've interacted with it. Say I click a checkbox, or the javascript set the values of various elements. How can I save the ...
1
vote
1answer
1k views

CTCallCenter - Call Event Handler - in background state

Regarding the Apple documentation there is no way to handle the phone state while the app is suspended : ...
1
vote
1answer
503 views

How can I prohibit State change from Proposed to Active in TFS Requirement work-item based on value of another field?

I've added department approvals to the standard CMMI-Template Requirement work-item. I'd like to limit the System.State field such that it can only be changed from Proposed to Active when all ...
1
vote
2answers
497 views

Stateful Rails app. Storing data not in database

I have a Rails application, that includes chat. Everything works fine, but now I want to store the last 50 chat messages somewhere. I need it to show the last messages if a page is reloaded. I don't ...
11
votes
2answers
777 views

User state in Parsec

I'm parsing an expression using Parsec and I want to keep track of variables in these expressions using the user state in Parsec. Unfortunately I don't really get how to do it. Given the following ...
8
votes
6answers
325 views

Haskell : reference to previously updated elements of list within the update function

Say I have the following definitions data Book = Book {id :: Int, title :: String} type Shelf = [Book] Assuming I have a hypothetical function (upd is for update) updShelf :: Shelf -> Shelf ...
6
votes
3answers
791 views

How can I avoid global state?

So, I was reading the Google testing blog, and it says that global state is bad and makes it hard to write tests. I believe it--my code is difficult to test right now. So how do I avoid global ...
4
votes
3answers
569 views

Should an Angular service have state?

Recently some co-workers and I were having a discussion as to whether or not AngularJS services should have state or not. We came up with some arguments for and against it and I wanted to get ...
4
votes
1answer
2k views

Should I implement onRetainNonConfigurationInstance?

I just read about maintaining state of my android app and stumbled upon onRetainNonConfigurationInstance. But while reading the documentation I noticed this sentence: This function is called ...
3
votes
1answer
185 views

lazy list computed using mutable state?

I'd like to figure out in general how to use mutable state in the computation of lazy lists. For instance, here is a naive Sieve of Eratosthenes implemented using a mutable array (source): import ...
2
votes
1answer
149 views

Android Keep state of selected elements when data are changing in ListView

First of all, thank you for reading my post and sorry for my bad English. I have an activity with a list of Products (like a shopping list), in which we can choose the number of product units. The ...
2
votes
1answer
102 views

Loop through states - scope? ruby/rails

I'd like to be able to loop through the model based on its current state. I've created fairly simple states for my model as follows: models/job.rb class Job < ActiveRecord::Base has_many ...
2
votes
1answer
348 views

How can Azure maintain APPLICATION state?

I know how Azure preserves SESSION state -- I've implemented it in my app using AppFabric based on Neil MacKenzie's Microsoft Windows Azure Development Cookbook. However, that approach based on ...
2
votes
3answers
647 views

Saving Game state Android

I'm unsure how I'm supposed to save the game state of my game that I'm developing. Should I save a instance/object containing all the game information? If yes, how? Or should I save all the relative ...
2
votes
1answer
587 views

What is a good way to store large temporary “session” data in a web application

My company has a 3rd party web service we are designing a front end for. The "objects" used by this web service are very large (and variable depending on the number of sub-entities created). The web ...
2
votes
1answer
674 views

REST - model state transitions

In REST - revertable DELETE a nice introduction on howto model state changes in REST was given. Basically, if you have a resource with a field status, you just put a new version of that resource with ...
2
votes
1answer
190 views

Web Application and In-Memory State

I'm building a web application in ASP.Net 4.0 which must maintain an in-memory state shared between users (better to say between group of user). It is not a standard application and the state related ...
2
votes
3answers
481 views

Distributed ASP.Net State Service

I'm wondering if there exist any distributed ASP.Net State Service alternative. Session can be stored in InProc, StateService or SQL. You can also write custom storage providers. For load balancing ...
2
votes
2answers
3k views

Android GPS on or off state

Is there any way to check if the Android GPS is on or off without any permission, just the state I don't need to toggle it. Thanks