All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.gamelift.model.ServerProcess Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS GameLift module holds the client classes that are used for communicating with AWS GameLift service.

There is a newer version: 1.11.8
Show newest version
/*
 * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not
 * use this file except in compliance with the License. A copy of the License is
 * located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file 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.amazonaws.services.gamelift.model;

import java.io.Serializable;

/**
 * 

* A set of instructions for launching server processes on each instance in a * fleet. Each instruction set identifies the location of the server executable, * optional launch parameters, and the number of server processes with this * configuration to maintain concurrently on the instance. Server process * configurations make up a fleet's RuntimeConfiguration. *

*/ public class ServerProcess implements Serializable, Cloneable { /** *

* Location in the game build of the server executable. All game builds are * installed on instances at the root C:\game\..., so an * executable file located at MyGame\latest\server.exe has a * launch path of "C:\game\MyGame\latest\server.exe". *

*/ private String launchPath; /** *

* Optional list of parameters to pass to the server executable on launch. *

*/ private String parameters; /** *

* Number of server processes using this configuration to run concurrently * on an instance. *

*/ private Integer concurrentExecutions; /** *

* Location in the game build of the server executable. All game builds are * installed on instances at the root C:\game\..., so an * executable file located at MyGame\latest\server.exe has a * launch path of "C:\game\MyGame\latest\server.exe". *

* * @param launchPath * Location in the game build of the server executable. All game * builds are installed on instances at the root * C:\game\..., so an executable file located at * MyGame\latest\server.exe has a launch path of " * C:\game\MyGame\latest\server.exe". */ public void setLaunchPath(String launchPath) { this.launchPath = launchPath; } /** *

* Location in the game build of the server executable. All game builds are * installed on instances at the root C:\game\..., so an * executable file located at MyGame\latest\server.exe has a * launch path of "C:\game\MyGame\latest\server.exe". *

* * @return Location in the game build of the server executable. All game * builds are installed on instances at the root * C:\game\..., so an executable file located at * MyGame\latest\server.exe has a launch path of " * C:\game\MyGame\latest\server.exe". */ public String getLaunchPath() { return this.launchPath; } /** *

* Location in the game build of the server executable. All game builds are * installed on instances at the root C:\game\..., so an * executable file located at MyGame\latest\server.exe has a * launch path of "C:\game\MyGame\latest\server.exe". *

* * @param launchPath * Location in the game build of the server executable. All game * builds are installed on instances at the root * C:\game\..., so an executable file located at * MyGame\latest\server.exe has a launch path of " * C:\game\MyGame\latest\server.exe". * @return Returns a reference to this object so that method calls can be * chained together. */ public ServerProcess withLaunchPath(String launchPath) { setLaunchPath(launchPath); return this; } /** *

* Optional list of parameters to pass to the server executable on launch. *

* * @param parameters * Optional list of parameters to pass to the server executable on * launch. */ public void setParameters(String parameters) { this.parameters = parameters; } /** *

* Optional list of parameters to pass to the server executable on launch. *

* * @return Optional list of parameters to pass to the server executable on * launch. */ public String getParameters() { return this.parameters; } /** *

* Optional list of parameters to pass to the server executable on launch. *

* * @param parameters * Optional list of parameters to pass to the server executable on * launch. * @return Returns a reference to this object so that method calls can be * chained together. */ public ServerProcess withParameters(String parameters) { setParameters(parameters); return this; } /** *

* Number of server processes using this configuration to run concurrently * on an instance. *

* * @param concurrentExecutions * Number of server processes using this configuration to run * concurrently on an instance. */ public void setConcurrentExecutions(Integer concurrentExecutions) { this.concurrentExecutions = concurrentExecutions; } /** *

* Number of server processes using this configuration to run concurrently * on an instance. *

* * @return Number of server processes using this configuration to run * concurrently on an instance. */ public Integer getConcurrentExecutions() { return this.concurrentExecutions; } /** *

* Number of server processes using this configuration to run concurrently * on an instance. *

* * @param concurrentExecutions * Number of server processes using this configuration to run * concurrently on an instance. * @return Returns a reference to this object so that method calls can be * chained together. */ public ServerProcess withConcurrentExecutions(Integer concurrentExecutions) { setConcurrentExecutions(concurrentExecutions); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getLaunchPath() != null) sb.append("LaunchPath: " + getLaunchPath() + ","); if (getParameters() != null) sb.append("Parameters: " + getParameters() + ","); if (getConcurrentExecutions() != null) sb.append("ConcurrentExecutions: " + getConcurrentExecutions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ServerProcess == false) return false; ServerProcess other = (ServerProcess) obj; if (other.getLaunchPath() == null ^ this.getLaunchPath() == null) return false; if (other.getLaunchPath() != null && other.getLaunchPath().equals(this.getLaunchPath()) == false) return false; if (other.getParameters() == null ^ this.getParameters() == null) return false; if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false) return false; if (other.getConcurrentExecutions() == null ^ this.getConcurrentExecutions() == null) return false; if (other.getConcurrentExecutions() != null && other.getConcurrentExecutions().equals( this.getConcurrentExecutions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLaunchPath() == null) ? 0 : getLaunchPath().hashCode()); hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode()); hashCode = prime * hashCode + ((getConcurrentExecutions() == null) ? 0 : getConcurrentExecutions().hashCode()); return hashCode; } @Override public ServerProcess clone() { try { return (ServerProcess) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy