Back to project page asyncop.
The source code is released under:
Apache License
If you think the Android project asyncop listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Marco Guidi//w w w . j a v a 2 s . c om * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.mguidi.asyncop; /** * Created by marco on 22/07/14. */ class Constants { static final String ACTION_ASYNCOP = "com.github.mguidi.asyncop.action:asyncop"; static final String ACTION_ASYNCOP_FINISH = "com.github.mguidi.asyncop.action:asyncop_finish"; static final String ACTION_PING = "com.github.mguidi.asyncop.action:ping"; static final String ARGS_ID_HELPER = "com.github.mguidi.asyncop:id_helper"; static final String ARGS_ARGS = "com.github.mguidi.asyncop:args"; static final String ARGS_RESULTS = "com.github.mguidi.asyncop:results"; static final String ARGS_ACTION = "com.github.mguidi.asyncop:action"; static final String ARGS_ID_REQUEST = "com.github.mguidi.asyncop:id_request"; static final String ARGS_IS_FAIL = "com.github.mguidi.asyncop:is_fail"; static final String ARGS_PENDING_REQUESTS = "com.github.mguidi.asyncop:pending_requests"; static final String LOG_TAG = "asyncop"; }