|
| 1 | +/* --------------------------------------------------------------------- |
| 2 | + * Numenta Platform for Intelligent Computing (NuPIC) |
| 3 | + * Copyright (C) 2016, Numenta, Inc. Unless you have an agreement |
| 4 | + * with Numenta, Inc., for a separate license for this software code, the |
| 5 | + * following terms and conditions apply: |
| 6 | + * |
| 7 | + * This program is free software: you can redistribute it and/or modify |
| 8 | + * it under the terms of the GNU Affero Public License version 3 as |
| 9 | + * published by the Free Software Foundation. |
| 10 | + * |
| 11 | + * This program is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 14 | + * See the GNU Affero Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU Affero Public License |
| 17 | + * along with this program. If not, see http://www.gnu.org/licenses. |
| 18 | + * |
| 19 | + * http://numenta.org/licenses/ |
| 20 | + * --------------------------------------------------------------------- |
| 21 | + */ |
1 | 22 | package org.numenta.nupic.network; |
2 | 23 |
|
3 | 24 | import java.io.IOException; |
|
12 | 33 | import org.slf4j.Logger; |
13 | 34 | import org.slf4j.LoggerFactory; |
14 | 35 |
|
| 36 | + |
| 37 | +/** |
| 38 | + * {@link PeristenceAPI} underbelly which uses the FST Fast Serialization library to |
| 39 | + * serialize various HTM.java object. |
| 40 | + * |
| 41 | + * @author cogmission |
| 42 | + * @see PersistenceAPI |
| 43 | + * @see SerialConfig |
| 44 | + */ |
15 | 45 | public class SerializerCore implements Persistable { |
16 | 46 | private static final long serialVersionUID = 1L; |
17 | 47 |
|
|
0 commit comments